npm react-hook-form 7.44.0-next.1
Version 7.44.0-next.1

latest releases: 7.52.1, 7.52.0, 7.51.5...
16 months ago

📄 Form Component update

  • added support for custom fetcher
// axios
<Form 
  action="/api" 
  method="post"
  fetcher={(action, { values }) => axios(action, values)}
/>

// SWR, Tan Query
<Form 
  action="/api" 
  method="post"
  fetcher={(action, { values }) => mutation(action)}
/>
  • server error no longer set custom error

Beta documenation: http://localhost:8000/api/useform/form

🗑️ remove JSX message check (#9921)

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

NewReleases is sending notifications on new releases.