Skip to content

Form action loading state (to prevent duplicate submissions) #9328

Answered by kiliman
mauriciabad asked this question in Q&A
Discussion options

You must be logged in to vote

You want the useNavigation hook. This returns the current navigation state, including form submissions. It also has the pending formData, for optimistic UI.

https://remix.run/docs/en/main/hooks/use-navigation

const navigation = useNavigation() 

return (
  <Form method="post">
    <button disabled={navigation.state === 'submitting'}>Submit</button>
  </Form>
)

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by mauriciabad
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants