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
Bug
When enableReinitialize is enabled on Formik, <FastField/> receives the old context initial values instead of the new initial values.
<FastField/>
FastField should behave like Field, when new initial values are found, update FastFields with the new initial values.
Pass in the values from Formik's resetForm() function where FastField's this.reset() gets called.
resetForm()
this.reset()
Pull Request: #462
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Bug, Feature, or Question?
Bug
Current Behavior
When enableReinitialize is enabled on Formik,
<FastField/>
receives the old context initial values instead of the new initial values.Desired Behavior
FastField should behave like Field, when new initial values are found, update FastFields with the new initial values.
Suggested Solutions
Pass in the values from Formik's
resetForm()
function where FastField'sthis.reset()
gets called.Pull Request: #462
The text was updated successfully, but these errors were encountered: