SSR-1660 Fix dupe check not being called on welcome page

This commit is contained in:
Josh Dassinger 2024-10-28 08:34:41 -05:00
parent 70e1081019
commit ff49da46e2
2 changed files with 2 additions and 1 deletions

View file

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

View file

@ -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() {