Merge pull request #1784 from Safelite/feature/CSR-1072
Feature/csr 1072
This commit is contained in:
commit
43eb004827
2 changed files with 9 additions and 1 deletions
|
|
@ -72,7 +72,7 @@ const routes = [
|
|||
// the saveSessionPromise will no longer point to a valid promise
|
||||
baseMixin.methods.dispatchStoreAction(storeActions.RESET_SAVE_SESSION_PROMISE);
|
||||
|
||||
if (!to.query.fmgPage.startsWith("payment")) {
|
||||
if (!to.query.fmgPage?.startsWith("payment")) {
|
||||
//payment pages used to return from safelitehop so exclude here
|
||||
// Remove the parameter after quote release
|
||||
const loadSessionResponse = await loadSessionIfPresent(
|
||||
|
|
|
|||
|
|
@ -1101,6 +1101,10 @@ export const actions = {
|
|||
parentAccountNumber,
|
||||
}
|
||||
) {
|
||||
if (!pageName) {
|
||||
return;
|
||||
}
|
||||
|
||||
var payload = {
|
||||
userId: userId,
|
||||
sessionKey: sessionKey,
|
||||
|
|
@ -1149,6 +1153,10 @@ export const actions = {
|
|||
parentAccountNumber,
|
||||
}
|
||||
) {
|
||||
if (!pageName) {
|
||||
return;
|
||||
}
|
||||
|
||||
var payload = {
|
||||
userId: userId,
|
||||
sessionKey: sessionKey,
|
||||
|
|
|
|||
Loading…
Reference in a new issue