diff --git a/app/register/page.tsx b/app/register/page.tsx index 0994a3f..4f992b5 100644 --- a/app/register/page.tsx +++ b/app/register/page.tsx @@ -110,7 +110,11 @@ export default function RegisterPage() { isValid = false; } - setErrors(newErrors); + setErrors({ + ...newErrors, + birthDate: '', + verificationCode: '', + }); return isValid; };