diff --git a/web/src/utils/auth.ts b/web/src/utils/auth.ts index 2426c5e8..b7c72527 100644 --- a/web/src/utils/auth.ts +++ b/web/src/utils/auth.ts @@ -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(); } \ No newline at end of file