INSR-10489: Fix inconsistent indentation and missing semicolons

This commit is contained in:
Alex Humphries 2026-07-24 22:26:57 -04:00
parent b5620e087e
commit ca8d77d2c2

View file

@ -1034,21 +1034,21 @@ export default {
this.benefitRecalModalAcknowledged = true;
},
scheduleElsewhereClicked() {
this.navigateBack(this, this.navigateBackScenario)
this.navigateBack(this, this.navigateBackScenario);
},
backButtonAction() {
if (this.hasBenefitRecalModal && !this.benefitRecalModalAcknowledged) {
this.$refs[BENEFIT_RECAL_MODAL_REF_NAME].openModal();
const gaLabel = this.mainStore.hasRecalibrationPart ? 'recalibration_version' : 'non-recalibration_version';
this.pushEventToGA(
'safelite_benefit_modal_displayed',
this.mainStore.accountNameForEvents,
gaLabel,
true
);
this.pushEventToGA(
'safelite_benefit_modal_displayed',
this.mainStore.accountNameForEvents,
gaLabel,
true
);
}
else {
this.navigateBack(this, this.navigateBackScenario)
this.navigateBack(this, this.navigateBackScenario);
}
}
}