From 85381a4b609b175bda07f09cc2097cfe3b34d688 Mon Sep 17 00:00:00 2001 From: amhsirak Date: Tue, 24 Dec 2024 03:07:01 +0530 Subject: [PATCH] chore: -rm translated error --- src/pages/Login.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/Login.tsx b/src/pages/Login.tsx index 161cfacd..85fbb20b 100644 --- a/src/pages/Login.tsx +++ b/src/pages/Login.tsx @@ -50,7 +50,7 @@ const Login = () => { window.localStorage.setItem("user", JSON.stringify(data)); navigate("/"); } catch (err) { - notify("error", t('login.error_notification')); // Translated error + notify("error", t('login.error_notification')); setLoading(false); } };