Merge pull request #1895 from renatoka/fix/1894-register-token-stringify

fix: stringify token upon registration
This commit is contained in:
Alexander Holliday
2025-03-10 10:25:59 -07:00
committed by GitHub

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", authToken);
navigate("/uptime");
createToast({
body: "Welcome! Your account was created successfully.",