From e3be96e3d2523f7d430f7ed318bbd96c71646098 Mon Sep 17 00:00:00 2001 From: Spicer Matthews Date: Tue, 12 Nov 2024 20:49:07 -0800 Subject: [PATCH] Testing new logout --- src/utils/auth/logout.js | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/src/utils/auth/logout.js b/src/utils/auth/logout.js index 6d765c1b..9002d370 100644 --- a/src/utils/auth/logout.js +++ b/src/utils/auth/logout.js @@ -5,11 +5,18 @@ import { STORAGE_KEY_USERNAME } from 'src/utils/constants' const logout = async (AuthUser) => { try { - await AuthUser.signOut() - // Clear the cache so it does not contain any authed content. await clearAllServiceWorkerCaches() await localStorageMgr.removeItem(STORAGE_KEY_USERNAME) + + // Clear cookie for tabV4OptIn + await localStorageMgr.removeItem('tabV4OptIn') + + logger.info(AuthUser) + + // Must do this last, as it will cause the page to reload. + // await AuthUser.signOut() + return true } catch (e) { logger.error(e)