From 3155da64543b5c123c5cd71790ce5d43f85d0737 Mon Sep 17 00:00:00 2001 From: "M. Fahad Sohail" <46647496+fahadsohail482@users.noreply.github.com> Date: Fri, 16 Jun 2023 12:07:26 +0500 Subject: [PATCH] Fix typo in npm install command. Fixed the the typo in the npm install instruction from 'yupcopy ' to 'yup'. This fix ensures accurate installation of yup package. --- src/content/get-started.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/get-started.mdx b/src/content/get-started.mdx index 3c981364d..d8e7c793c 100644 --- a/src/content/get-started.mdx +++ b/src/content/get-started.mdx @@ -642,7 +642,7 @@ We also support schema-based form validation with [Yup](https://github.com/jquen **Step 1:** Install `Yup` into your project. ```bash copy -npm install @hookform/resolvers yupCopy +npm install @hookform/resolvers yup ``` **Step 2:** Prepare your schema for validation and register inputs with React Hook Form.