File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ import { FieldCheckbox } from '@/components/form/field-checkbox';
17
17
import { Button } from '@/components/ui/button' ;
18
18
19
19
export default {
20
- title : 'Form/FieldCheckboxGroup ' ,
20
+ title : 'Form/FieldCheckbox ' ,
21
21
component : FieldCheckbox ,
22
22
} satisfies Meta < typeof FieldCheckbox > ;
23
23
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ import { FormMocked } from '../form-test-utils';
10
10
const zFormSchema = ( ) =>
11
11
z . object ( {
12
12
lovesBears : z . boolean ( ) . refine ( ( val ) => val === true , {
13
- message : 'Please say you love lovesBearss .' ,
13
+ message : 'Please say you love bears .' ,
14
14
} ) ,
15
15
} ) ;
16
16
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import { cn } from '@/lib/tailwind/utils';
6
6
7
7
export type CheckboxProps = Omit < CheckboxPrimitive . Root . Props , 'type' > & {
8
8
/**
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.
10
10
*/
11
11
noLabel ?: boolean ;
12
12
labelProps ?: React . ComponentProps < 'label' > ;
You can’t perform that action at this time.
0 commit comments