From 4938229e2e359355cdde44cc4925b3aa4d567250 Mon Sep 17 00:00:00 2001 From: Duriel7 <78348490+Duriel7@users.noreply.github.com> Date: Fri, 27 Dec 2024 14:45:26 +0100 Subject: [PATCH] Update create-your-first-crud.mdx --- pages/tutorials/create-your-first-crud.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/tutorials/create-your-first-crud.mdx b/pages/tutorials/create-your-first-crud.mdx index 0ac8db5..067e81c 100644 --- a/pages/tutorials/create-your-first-crud.mdx +++ b/pages/tutorials/create-your-first-crud.mdx @@ -1429,7 +1429,7 @@ Create the `ProjectForm.tsx` in the `src/features/projects` folder and with the import { Stack } from "@chakra-ui/react"; import { useFormContext } from "react-hook-form"; -import { FormField } from "@/components/Form"; +import { FormField, FormFieldLabel, FormFieldController } from "@/components/Form"; import { FormFieldsProject } from "@/features/projects/schemas"; export const ProjectForm = () => { @@ -1444,7 +1444,7 @@ export const ProjectForm = () => { Description -