Removing comment

This commit is contained in:
Michaela Brydon 2024-03-04 15:10:23 -05:00
parent 881a79c7eb
commit c8b491cbbd

View file

@ -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,