-
-
Notifications
You must be signed in to change notification settings - Fork 343
New issue
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
Accessing form error array using form.useStore and destructuring can cause react update depth issue #902
Comments
I also get this almost every time I use |
did u find a fix or any way around it, its causing issues for me and I'm on a deadline lol |
I believe I used |
I'm sorry but What feature are you trying to implement? |
@Balastrong It's been a bit, but what I was trying to achieve was to have 1 hook that would return the errors and other properties, i.e. // My one hook to rule them all
const {isValid, isPristine, isSubmitted, isSubmitting,errors} = form.useStore(
state => ({
canSubmit: state.canSubmit,
isPristine: state.isPristine,
isSubmitted: state.isSubmitted,
isSubmitting: state.isSubmitting,
errors: state.errors
})
) Because of this bug (and after a extended debugging session) I had to split it into 2 different hook calls so that it would work: // The main hook
const {isValid, isPristine, isSubmitted, isSubmitting} = form.useStore(
state => ({
canSubmit: state.canSubmit,
isPristine: state.isPristine,
isSubmitted: state.isSubmitted,
isSubmitting: state.isSubmitting
})
)
// The separate error hook to bypass the bug
const errors = form.useStore(state => state.errors) |
Ok! I don't have a ready answer sadly, but I understood the issue, thanks :D |
Describe the bug
When using destructuring, the form.useStore hook returns an error array that appears to change on every render. This then causes a react update depth issue.
Your minimal, reproducible example
https://stackblitz.com/edit/tanstack-form-oryfsj?file=README.md
Steps to reproduce
Please see the provided repro.
Expected behavior
As a user, I want the error array to be updated only when the error array changes.
How often does this bug happen?
Every time
Screenshots or Videos
No response
Platform
TanStack Form adapter
react-form
TanStack Form version
v0.29.1
TypeScript version
5.5.4
Additional context
No response
The text was updated successfully, but these errors were encountered: