feat: proper error message

This commit is contained in:
amhsirak
2025-07-12 01:30:30 +05:30
parent 3bdea4970e
commit a57ca1c35a

View File

@@ -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;
}