fix: remove usage of local storage for token

This commit is contained in:
renatoka
2025-03-10 18:24:36 +01:00
parent e068fa24f3
commit a4e0762128

View File

@@ -239,7 +239,6 @@ const Register = ({ isSuperAdmin }) => {
const action = await dispatch(register(registerForm));
if (action.payload.success) {
const authToken = action.payload.data;
localStorage.setItem("token", JSON.stringify(authToken));
navigate("/uptime");
createToast({
body: "Welcome! Your account was created successfully.",