Removing comment
This commit is contained in:
parent
881a79c7eb
commit
c8b491cbbd
1 changed files with 2 additions and 3 deletions
|
|
@ -369,7 +369,7 @@ export default {
|
||||||
},
|
},
|
||||||
async navigateForward() {
|
async navigateForward() {
|
||||||
if (this.unverified || this.verifiedDeductible) {
|
if (this.unverified || this.verifiedDeductible) {
|
||||||
this.mainStore.updateSupportingItems(this.supportingItems);
|
useMainStore().updateSupportingItems(this.supportingItems);
|
||||||
this.$router.navigate(
|
this.$router.navigate(
|
||||||
navigationScenarios.CLICKED_FORWARD,
|
navigationScenarios.CLICKED_FORWARD,
|
||||||
this.$route,
|
this.$route,
|
||||||
|
|
@ -379,8 +379,7 @@ export default {
|
||||||
} else if (this.verifiedITAC || this.verifiedNoComp) {
|
} else if (this.verifiedITAC || this.verifiedNoComp) {
|
||||||
useMainStore().updateIsSafeliteProvider(this.selectedProvider === 'Safelite');
|
useMainStore().updateIsSafeliteProvider(this.selectedProvider === 'Safelite');
|
||||||
if (this.selectedProvider === 'Safelite') {
|
if (this.selectedProvider === 'Safelite') {
|
||||||
// TODO maybe don't save supporting items on this page
|
useMainStore().updateSupportingItems(this.supportingItems);
|
||||||
this.mainStore.updateSupportingItems(this.supportingItems);
|
|
||||||
this.$router.navigate(
|
this.$router.navigate(
|
||||||
navigationScenarios.CLICKED_FORWARD_WITH_SAFELITE,
|
navigationScenarios.CLICKED_FORWARD_WITH_SAFELITE,
|
||||||
this.$route,
|
this.$route,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue