From cb216512f7f59971dc20ba46d480f30d0d166646 Mon Sep 17 00:00:00 2001 From: CodAffection <32505654+CodAffection@users.noreply.github.com> Date: Tue, 10 Mar 2026 16:00:59 +0530 Subject: [PATCH 1/2] Add video resources for React Hook Form courses (#1192) * Add video resources for React Hook Form courses Added a popular Udemy course on React Hook Form. * Modify video resource details for React Hook Form Replaced the course with YouTube video. * Fix formatting of video title in resources.tsx * Fix formatting of video title in resources.tsx formatted --- src/data/resources.tsx | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/data/resources.tsx b/src/data/resources.tsx index f64715ff6..65109dbed 100644 --- a/src/data/resources.tsx +++ b/src/data/resources.tsx @@ -533,6 +533,17 @@ export default { }, ], video: [ + { + type: "video", + title: + "React Hook Form - The Free Course", + url: "https://youtu.be/lp8xXoG0xQY", + authorUrl: "https://www.youtube.com/@codaffection", + author: "CodAffection", + description: + "Learn A - Z about React Hook Form library with a practical project build, An in-depth course covering the fundamentals of the library", + version: "7", + }, { type: "video", title: From 5c2f62f8326242e31be4decbced01ea5dd8dadc4 Mon Sep 17 00:00:00 2001 From: Beier Luo Date: Tue, 10 Mar 2026 21:32:39 +1100 Subject: [PATCH 2/2] fix format --- src/content/docs/usecontroller/controller.mdx | 2 +- src/content/docs/usewatch.mdx | 2 +- src/data/api.tsx | 3 ++- src/data/resources.tsx | 3 +-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/content/docs/usecontroller/controller.mdx b/src/content/docs/usecontroller/controller.mdx index 29435a86c..4db8719a3 100644 --- a/src/content/docs/usecontroller/controller.mdx +++ b/src/content/docs/usecontroller/controller.mdx @@ -23,7 +23,7 @@ The following table contains information about the arguments for `Controller`. | `shouldUnregister` | boolean = false` | | Input will be unregistered after unmount and defaultValues will be removed as well.

**Note:** this prop should be avoided when using with `useFieldArray` as `unregister` function gets called after input unmount/remount and reorder. | | `disabled` | boolean = false` | | `disabled` prop will be returned from `field` prop. Controlled input will be disabled and its value will be omitted from the submission data. | | `defaultValue` | unknown | | **Important:** Can not apply `undefined` to `defaultValue` or `defaultValues` at `useForm`. | -| `exact` | boolean = false | | This prop will enable an exact match for input name subscriptions, default to true. | +| `exact` | boolean = false | | This prop will enable an exact match for input name subscriptions, default to true. | ### Return diff --git a/src/content/docs/usewatch.mdx b/src/content/docs/usewatch.mdx index 3f1d02cd8..845b4ec70 100644 --- a/src/content/docs/usewatch.mdx +++ b/src/content/docs/usewatch.mdx @@ -9,7 +9,7 @@ sidebar: apiLinks { label: "Watch", value: "/docs/usewatch/watch", - } + }, ]} /> diff --git a/src/data/api.tsx b/src/data/api.tsx index b35e15841..08c88d9ec 100644 --- a/src/data/api.tsx +++ b/src/data/api.tsx @@ -2853,7 +2853,8 @@ setValue('notRegisteredInput', { test: '1', test2: '2' }); // ✅ sugar syntax t

- This prop will enable an exact match for input name subscriptions, default to true. + This prop will enable an exact match for input name subscriptions, + default to true.

diff --git a/src/data/resources.tsx b/src/data/resources.tsx index 65109dbed..256fee64a 100644 --- a/src/data/resources.tsx +++ b/src/data/resources.tsx @@ -535,8 +535,7 @@ export default { video: [ { type: "video", - title: - "React Hook Form - The Free Course", + title: "React Hook Form - The Free Course", url: "https://youtu.be/lp8xXoG0xQY", authorUrl: "https://www.youtube.com/@codaffection", author: "CodAffection",