react-hook-form Uncontrolled input Error
Unanswered
Turkish Angora posted this in #help-forum
Turkish AngoraOP
when I type any character to the firstName field I get thi error , Idk how to solve it , what could be the problem?
1 Reply
American Crow
Missing default value when creating the form?
const form = useForm<>({
resolver: zodResolver(Schema),
defaultValues: {
firstName: "",
...
}
})