Chaim Lev-Ari
Chaim Lev-Ari
now it's react 16.8
I'll try to figure it out, thanks! On Mon, 20 Jul 2020, 19:46 Cruz Molina, wrote: > Hey @chiptus ! Thank you for the suggestion. > PRs are definitely welcome...
```ts const [formKey, clearForm] = useReducer((state) => state + 1, 0); clearForm()} /> ```
while doing all of this, I still get "Could not parse content as FormData.". I added some console.log inside remix `node_modules/@remix-run/server-runtime/dist/formData.js` and I see that content type is `application/x-www-form-urlencoded` and...
> while doing all of this, I still get "Could not parse content as FormData.". I added some console.log inside remix `node_modules/@remix-run/server-runtime/dist/formData.js` and I see that content type is `application/x-www-form-urlencoded`...
> That's s good point, I forgot to mention it in my example. @AlemTuzlak sorry for pinging you again, but it would be nice to update the docs, I can...
do you mean `useSubmit` changes the encType? so why have the encType prop on the form component anyway?
> You don't need it on the form, when using useSubmit you are managing the form submission through the submit api and not through the Form component. You can check...
same happens when I want to pass register to a component. using `UseFormRegister` doesn't work: ``` Type '(name: "method" | "email" | "phone", options?: (RegisterOptions & { disableProgressiveEnhancement?: boolean |...
@nitzantomer of course it's easy :) anyway I'll fork it and see if I can get a local environment to work. And yes I would like to have something to...