diff --git a/src/pages/Register.tsx b/src/pages/Register.tsx index 81474977..f223d169 100644 --- a/src/pages/Register.tsx +++ b/src/pages/Register.tsx @@ -41,7 +41,7 @@ const Register = () => { // Basic "@" check (minimal) if (!email.includes("@")) { - notify("error", t('register.error.invalid_email') || "Invalid email format"); + notify("error", "Invalid email format"); return; }