diff --git a/src/app/(auth-routes)/register/page.tsx b/src/app/(auth-routes)/register/page.tsx index 52de58043..0dd28b00c 100644 --- a/src/app/(auth-routes)/register/page.tsx +++ b/src/app/(auth-routes)/register/page.tsx @@ -3,7 +3,7 @@ import { zodResolver } from "@hookform/resolvers/zod"; import { DialogContent, DialogTitle } from "@radix-ui/react-dialog"; import Link from "next/link"; -import { useEffect, useState } from "react"; +import { useState } from "react"; import { useForm } from "react-hook-form"; import { z } from "zod"; @@ -59,10 +59,6 @@ const SignUp = () => { form.handleSubmit(handleFormSubmit)(); }; - useEffect(() => { - console.log("Form Validity:", form.formState.isValid); - }, [form.formState.isValid]); - return (