Skip to content
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: 2 comments 1 reply

Comment options

You must be logged in to vote
0 replies
Answer selected by mauriciabad
Comment options

You must be logged in to vote
1 reply
@kiliman
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
3 participants