From ca8d77d2c26527c85c9eb03c3ac564c83aee80fe Mon Sep 17 00:00:00 2001 From: Alex Humphries Date: Fri, 24 Jul 2026 22:26:57 -0400 Subject: [PATCH] INSR-10489: Fix inconsistent indentation and missing semicolons --- src/layouts/schedule-page/schedule-page.vue | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/layouts/schedule-page/schedule-page.vue b/src/layouts/schedule-page/schedule-page.vue index 1d4b9c85..b42de065 100644 --- a/src/layouts/schedule-page/schedule-page.vue +++ b/src/layouts/schedule-page/schedule-page.vue @@ -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); } } }