From 13fcc159b8618e24146bb115bb746e8c84d9eff0 Mon Sep 17 00:00:00 2001 From: amhsirak Date: Thu, 26 Jun 2025 22:47:01 +0530 Subject: [PATCH] chore: !print data --- src/pages/Register.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/src/pages/Register.tsx b/src/pages/Register.tsx index 909382d0..d9bdd64c 100644 --- a/src/pages/Register.tsx +++ b/src/pages/Register.tsx @@ -42,7 +42,6 @@ const Register = () => { setLoading(true); try { const { data } = await axios.post(`${apiUrl}/auth/register`, { email, password }); - console.log(data); dispatch({ type: "LOGIN", payload: data }); notify("success", t('register.welcome_notification')); window.localStorage.setItem("user", JSON.stringify(data));