Pedro Sanchez
Pedro Sanchez
@kusiewicz as @LeCarbonator said, the problem is when you need to use formOptions like this: ```typescript const formOpts = formOptions({ defaultValues: { description: "", }, }); const form = useForm({...
One question, with this #1679 we shouldn't use validators and onSubmit in formOptions(), right ? I'm using v1.19.1 ```typescript type RowsFormType = { id: string }[] const formOpts2 = formOptions({...
@a-is-4-adam @LeCarbonator see the error introduced in the latest version described in the previous message.
Hey there! I tried the last version and I get this new error running this code: ```tsx type RowsFormType = { id: string }[] const formOpts2 = formOptions({ defaultValues: {...
Here's another one: From the example in my previous comment, if I delete the type: ```tsx type RowsFormType = { id: string }[] const formOpts2 = formOptions({ defaultValues: { rows:...
> Hi [@pedro757](https://github.com/pedro757), why are you passing the submission event to the handleSubmit handler? > > This is the function signature for handle submit. > > > The overrides prop...
> Can throw your example into a code sandbox, that would be really helpful... it's hard to gather what’s going on without an example to see. 😄 https://codesandbox.io/p/devbox/yfjvkd The important...
Sorry, now it's accessible @LeCarbonator