DEV Community

Discussion on: Data fetching React Hook

Collapse
 
mbellagamba profile image
Mirco Bellagamba

This hook cannot work for mutation requests, like form submissions, because it starts the fetch request as soon as the component is mounted. If you need to handle form submissions you should write a "classic" async handler.