From fed53fd0c609b9460fb5eee8f101b98928f1f9b6 Mon Sep 17 00:00:00 2001 From: amhsirak Date: Tue, 24 Dec 2024 03:06:50 +0530 Subject: [PATCH] chore: -rm translated notification --- 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 b8228799..161cfacd 100644 --- a/src/pages/Login.tsx +++ b/src/pages/Login.tsx @@ -46,7 +46,7 @@ const Login = () => { password, }); dispatch({ type: "LOGIN", payload: data }); - notify("success", t('login.welcome_notification')); // Translated notification + notify("success", t('login.welcome_notification')); window.localStorage.setItem("user", JSON.stringify(data)); navigate("/"); } catch (err) {