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() {
if (this.unverified || this.verifiedDeductible) {
this.mainStore.updateSupportingItems(this.supportingItems);
useMainStore().updateSupportingItems(this.supportingItems);
this.$router.navigate(
navigationScenarios.CLICKED_FORWARD,
this.$route,
@ -379,8 +379,7 @@ export default {
} else if (this.verifiedITAC || this.verifiedNoComp) {
useMainStore().updateIsSafeliteProvider(this.selectedProvider === 'Safelite');
if (this.selectedProvider === 'Safelite') {
// TODO maybe don't save supporting items on this page
this.mainStore.updateSupportingItems(this.supportingItems);
useMainStore().updateSupportingItems(this.supportingItems);
this.$router.navigate(
navigationScenarios.CLICKED_FORWARD_WITH_SAFELITE,
this.$route,