From 1e78aff92b69c34f241a58883adfbaaa2454716c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Irek=20R=C3=B3g?= Date: Wed, 11 Jan 2023 18:21:19 +0100 Subject: [PATCH] Update README.md reValidateMode typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e9f07a9..f9c7a67 100644 --- a/README.md +++ b/README.md @@ -247,7 +247,7 @@ The default behavior for this library is that errors will be shown once the user ```tsx const form = useForm>({ resolver: zodResolver(MyFormSchema), - revalidateMode: "onSubmit" // now the form revalidates on submit + reValidateMode: "onSubmit" // now the form revalidates on submit }); return (