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';
1717import { Button } from '@/components/ui/button' ;
1818
1919export default {
20- title : 'Form/FieldCheckboxGroup ' ,
20+ title : 'Form/FieldCheckbox ' ,
2121 component : FieldCheckbox ,
2222} satisfies Meta < typeof FieldCheckbox > ;
2323
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ import { FormMocked } from '../form-test-utils';
1010const 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
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import { cn } from '@/lib/tailwind/utils';
66
77export 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' > ;
You can’t perform that action at this time.
0 commit comments