fix(dashboard): only clear token from localStorage on 401 error
This commit is contained in:
parent
66883cef51
commit
f731f0d453
@ -58,9 +58,9 @@
|
||||
user = res;
|
||||
} catch (error) {
|
||||
console.log(error);
|
||||
localStorage.removeItem("pk-token");
|
||||
localStorage.removeItem("pk-user");
|
||||
currentUser.update(() => null);
|
||||
// localStorage.removeItem("pk-token");
|
||||
// localStorage.removeItem("pk-user");
|
||||
// currentUser.update(() => null);
|
||||
navigate("/");
|
||||
}
|
||||
}
|
||||
|
@ -47,9 +47,12 @@
|
||||
currentUser.update(() => res);
|
||||
} catch (error) {
|
||||
console.log(error);
|
||||
if (error.code == 401) {
|
||||
error.message = "Invalid token";
|
||||
localStorage.removeItem("pk-token");
|
||||
localStorage.removeItem("pk-user");
|
||||
currentUser.update(() => null);
|
||||
}
|
||||
err = error.message;
|
||||
}
|
||||
loading = false;
|
||||
|
Loading…
Reference in New Issue
Block a user