-
Beta Was this translation helpful? Give feedback.
Answered by
imtheaman
Mar 15, 2024
Replies: 1 comment
-
I got the solution. basically i was defining my schema with names like "user[first_name]" which react-hook-form parses as
and that's the problem, when i fixed my schema name from "user[first_name]" to
it's solved and working as expected. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
imtheaman
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I got the solution. basically i was defining my schema with names like "user[first_name]" which react-hook-form parses as
and that's the problem, when i fixed my schema name from "user[first_name]" to
it's solved and working as expected.