We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I cancel transaction on MetaMask.
Button remains spinning.
Of course I can reload the page.
Nice to have to restore initial button state.
The text was updated successfully, but these errors were encountered:
I would say this is not very important since most actions doesn't depends on other actions, a refresh on the page will do.
In case if wanted to fix it, we can treat error code -32603 differently in saga.js:37
-32603
{ code: -32603, message: "Error: MetaMask Tx Signature: User denied transaction signature." }
Or add the actions.setSubmitting(false) to all the Formik form.
actions.setSubmitting(false)
<Formik onSubmit={(values, actions) => { CallMyApi(user.id, values) .error(() => { actions.setSubmitting(false); }) ); }}
Sorry, something went wrong.
No branches or pull requests
I cancel transaction on MetaMask.
Button remains spinning.
Of course I can reload the page.
Nice to have to restore initial button state.
The text was updated successfully, but these errors were encountered: