-
Is it possible to use values from form in uncontrolled mode as keys in react query? |
Beta Was this translation helpful? Give feedback.
Answered by
rtivital
Oct 12, 2024
Replies: 1 comment
-
Uncontrolled form does not trigger a rerender – react query keys will not be updated when values change. In this case, it is better to use controlled form mode. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
dmitry-ff
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uncontrolled form does not trigger a rerender – react query keys will not be updated when values change. In this case, it is better to use controlled form mode.