diff --git a/src/common/cookie.ts b/src/common/cookie.ts index 8cdd7481..7199ba3f 100644 --- a/src/common/cookie.ts +++ b/src/common/cookie.ts @@ -24,8 +24,6 @@ export function setCookie( SameSite?: 'Lax' | 'Strict' | 'None'; } ) { - // eslint-disable-next-line no-console - console.log('setCookie', { name, value, options }); if (!name) throw new Error('cannot set unnamed cookie'); const { expires, path, domain, secure, SameSite } = { path: '/', diff --git a/src/features/auth/hooks.ts b/src/features/auth/hooks.ts index 62fe7986..c1d6bf79 100644 --- a/src/features/auth/hooks.ts +++ b/src/features/auth/hooks.ts @@ -55,8 +55,6 @@ export const useTokenCookie = ( // Initializes auth for states where useTryAuthFromToken does not set auth useEffect(() => { - // eslint-disable-next-line no-console - console.log({ cookieToken, isUninitialized, isFetching, isSuccess, token }); // If the cookieToken is present but it failed checks and wont be overwritten by a token in state, clear if ( cookieToken &&