npm react-hook-form 7.44.0-rc.4
Version 7.44.0-rc.4

latest releases: 7.51.3, 7.51.2, 7.51.1...
11 months ago

👔 Improve Form component onSubmit and remove fetcher prop (#10425)

<Form 
-  fetcher={(...) => {}}
+  onSubmit={await ({ formData, data, event }) => {
+    await fetch('/api', { body: formData, method: 'post' })
+  }} 
/>
// With action prop, it achieve the same as above
<Form action="/api" />

😵‍💫 close #10386 re-register controller input to fix strict mode (#10418)
✍️ update form.tsx for TSdoc (#10399)

Don't miss a new react-hook-form release

NewReleases is sending notifications on new releases.