diff --git a/src/shared/utils/browser/clear-auth-cookie.ts b/src/shared/utils/browser/clear-auth-cookie.ts index 1f3a3eca..f5cc73f1 100644 --- a/src/shared/utils/browser/clear-auth-cookie.ts +++ b/src/shared/utils/browser/clear-auth-cookie.ts @@ -3,7 +3,6 @@ import { authCookieName } from "../../config"; export default function clearAuthCookie() { document.cookie = cookie.serialize(authCookieName, "", { - expires: new Date("Thu, 01 Jan 1970 00:00:01 GMT"), maxAge: -1, sameSite: true, path: "/",