fix(web): update auth

This commit is contained in:
zhaoying
2026-01-13 10:59:28 +08:00
parent c01bddf5be
commit 0433e17b34

View File

@@ -1,7 +1,7 @@
import { cookieUtils } from './request'
export const clearAuthData = () => {
console.log("Clearing auth data and redirecting to login");
// sessionStorage.clear();
// localStorage.clear()
sessionStorage.clear();
localStorage.clear()
cookieUtils.clear();
}