Merge branch 'release/2025.01.24' into feature/CASH-144
This commit is contained in:
commit
497b8d7568
1 changed files with 5 additions and 1 deletions
|
|
@ -58,6 +58,11 @@ const routes = [
|
|||
|
||||
await analyticsMixin.methods.validateSession();
|
||||
|
||||
// after session is validated, remove the fromHeritage querystring if it exists so session expiration works
|
||||
if (to.query) {
|
||||
delete to.query[queryStrings.FROM_HERITAGE];
|
||||
}
|
||||
|
||||
if (getFunnelCookie()?.SuppressConceptFunnel) {
|
||||
log(" --go to heritage suppressConceptFunnel: ");
|
||||
await navigateToHeritageFunnel({ shouldSaveSession: false });
|
||||
|
|
@ -185,7 +190,6 @@ const routes = [
|
|||
log( " --clear to.query");
|
||||
delete to.query[queryStrings.FMG_PAGE];
|
||||
|
||||
//to.query[queryStrings.FMG_PAGE] = "";
|
||||
log(" --to.query cleared ", JSON.stringify(to.query));
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue