diff --git a/app/components/forms.tsx b/app/components/forms.tsx index 55ecaee..c79eeec 100644 --- a/app/components/forms.tsx +++ b/app/components/forms.tsx @@ -64,34 +64,36 @@ export const FieldCheckbox = ({ const id = inputProps.id ?? fallbackId const errorId = errors?.length ? `${id}-error` : undefined return ( -
- { - input.change(state.valueOf() ? checkedValue : "") - inputProps.onCheckedChange?.(state) - }} - onFocus={(event) => { - input.focus() - inputProps.onFocus?.(event) - }} - onBlur={(event) => { - input.blur() - inputProps.onBlur?.(event) - }} - type="button" - /> -
+ ) } @@ -108,7 +110,7 @@ export function ErrorList({ return (