SSR-1660 Fix dupe check not being called on welcome page
This commit is contained in:
parent
70e1081019
commit
ff49da46e2
2 changed files with 2 additions and 1 deletions
|
|
@ -471,7 +471,7 @@ export default {
|
||||||
},
|
},
|
||||||
startNewReferral() {
|
startNewReferral() {
|
||||||
this.mainStore.issConfig.enableContinueFromCookie = false;
|
this.mainStore.issConfig.enableContinueFromCookie = false;
|
||||||
this.mainStore.order.loadedFromCookie = true;
|
this.mainStore.order.loadedFromCookie = false;
|
||||||
this.answeredContinueModal = true;
|
this.answeredContinueModal = true;
|
||||||
this.$refs.continueModal.closeModal();
|
this.$refs.continueModal.closeModal();
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -2026,6 +2026,7 @@ export const useMainStore = defineStore({
|
||||||
this.order.availableVaps = null;
|
this.order.availableVaps = null;
|
||||||
this.order.carrierPhoneNumber = null;
|
this.order.carrierPhoneNumber = null;
|
||||||
this.order.customerPortalLoginToken = null;
|
this.order.customerPortalLoginToken = null;
|
||||||
|
this.order.loadedFromCookie = null;
|
||||||
},
|
},
|
||||||
|
|
||||||
resetPolicy() {
|
resetPolicy() {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue