From f8df9b651294d01326e97f8fb0b051cf074492ef Mon Sep 17 00:00:00 2001 From: FrankRua Date: Fri, 10 Jun 2022 12:34:32 -0400 Subject: [PATCH] reset state on timeout --- src/router/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/router/index.js b/src/router/index.js index 74ee110de..2b2d09859 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -46,6 +46,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); await GoToFunnelStartOn404(next); }