From cb7b616ab4449cdf23feb2463910fdc792adebe6 Mon Sep 17 00:00:00 2001 From: AdamCaouetteSafelite Date: Thu, 7 Aug 2025 14:10:15 -0400 Subject: [PATCH] hide the whole appointment question if only one option (mobile or inshop) is available --- src/layouts/schedule/schedule.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/layouts/schedule/schedule.vue b/src/layouts/schedule/schedule.vue index dc65d11e5..6456ff28f 100644 --- a/src/layouts/schedule/schedule.vue +++ b/src/layouts/schedule/schedule.vue @@ -700,7 +700,7 @@ export default { ); }, isAppointmentTypeDisplayed() { - return this.zipCode && !this.displayNoShopsAlert; + return this.zipCode && !this.displayNoShopsAlert && this.isServiceableMobile && this.isServiceableInshop; }, requiresInshopRecalibration() { // Specifically check for isRecalibrationServiceableMobile === false, not null or true.