diff --git a/src/components/react-hook-form/Form.tsx b/src/components/react-hook-form/Form.tsx index 21ca4d70..97e95256 100644 --- a/src/components/react-hook-form/Form.tsx +++ b/src/components/react-hook-form/Form.tsx @@ -47,7 +47,7 @@ export const Form = forwardRef(function Form< await onPreSubmit(e) } - return form.handleSubmit(onSubmit) + return form.handleSubmit(onSubmit)(e) } : undefined