Clear funnelsessioninfo when expired, insteaed of just state

This commit is contained in:
Chloe Herd 2024-01-19 10:35:52 -05:00
parent f0737fc00e
commit 708a9bbe8b

View file

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