Skip to content

Commit 96d423e

Browse files
committed
fix: typos
1 parent ee3c6a4 commit 96d423e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

app/components/form/field-checkbox/docs.stories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import { FieldCheckbox } from '@/components/form/field-checkbox';
1717
import { Button } from '@/components/ui/button';
1818

1919
export default {
20-
title: 'Form/FieldCheckboxGroup',
20+
title: 'Form/FieldCheckbox',
2121
component: FieldCheckbox,
2222
} satisfies Meta<typeof FieldCheckbox>;
2323

app/components/form/field-checkbox/field-checkbox.spec.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { FormMocked } from '../form-test-utils';
1010
const zFormSchema = () =>
1111
z.object({
1212
lovesBears: z.boolean().refine((val) => val === true, {
13-
message: 'Please say you love lovesBearss.',
13+
message: 'Please say you love bears.',
1414
}),
1515
});
1616

app/components/ui/checkbox.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { cn } from '@/lib/tailwind/utils';
66

77
export type CheckboxProps = Omit<CheckboxPrimitive.Root.Props, 'type'> & {
88
/**
9-
* By default, the radio is wrapped in a `<label>`. Set to `false` if you do not want it.
9+
* By default, the checkbox is wrapped in a `<label>`. Set to `false` if you do not want it.
1010
*/
1111
noLabel?: boolean;
1212
labelProps?: React.ComponentProps<'label'>;

0 commit comments

Comments
 (0)