From 0a5df3ac85ba69910d2cfcea00774c267905ff57 Mon Sep 17 00:00:00 2001 From: puneet-sarhali <57085704+puneet-sarhali@users.noreply.github.com> Date: Mon, 29 May 2023 00:10:34 -0700 Subject: [PATCH] docs(www): broken link to React Hook Form's useController hook (#479) Co-authored-by: shadcn --- apps/www/content/docs/forms/react-hook-form.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/www/content/docs/forms/react-hook-form.mdx b/apps/www/content/docs/forms/react-hook-form.mdx index 13b62a1b81..42e45cd264 100644 --- a/apps/www/content/docs/forms/react-hook-form.mdx +++ b/apps/www/content/docs/forms/react-hook-form.mdx @@ -142,7 +142,7 @@ export function ProfileForm() { } ``` -Since `FormField` is using a controlled component, you need to provide a default value for the field. See the [React Hook Form docs](https://react-hook-form.com/api/usecontroller) to learn more about controlled components. +Since `FormField` is using a controlled component, you need to provide a default value for the field. See the [React Hook Form docs](https://react-hook-form.com/docs/usecontroller) to learn more about controlled components. ### Build your form