From 708a9bbe8be97884de06373d560e9618f9a392d3 Mon Sep 17 00:00:00 2001 From: Chloe Herd Date: Fri, 19 Jan 2024 10:35:52 -0500 Subject: [PATCH] Clear funnelsessioninfo when expired, insteaed of just state --- src/router/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/router/index.js b/src/router/index.js index b11d0abf0..8c304268c 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -51,6 +51,7 @@ const routes = [ // If the saved session has timed out, clear the session, execute 404 logic. if (getFunnelCookie() !== null && !isSavedSessionStillActive()) { await baseMixin.methods.dispatchStoreAction(storeActions.RESET_STATE); + deleteFunnelCookie(); GoToFunnelStartOn404(next); }