reset state on timeout

This commit is contained in:
FrankRua 2022-06-10 12:34:32 -04:00
parent a5088eb73f
commit f8df9b6512

View file

@ -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);
}