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));