From 8b9c2eee6a1c92c95885341ebbb669646bc1eaa1 Mon Sep 17 00:00:00 2001 From: Matt Caimi Date: Tue, 5 Aug 2025 10:55:03 -0400 Subject: [PATCH] CASH-1246 prevent mobile supplemental info when there are no timeslots --- src/layouts/schedule/time-slot-question/time-slot-question.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/layouts/schedule/time-slot-question/time-slot-question.vue b/src/layouts/schedule/time-slot-question/time-slot-question.vue index 2a66c78a2..7d6e9b905 100644 --- a/src/layouts/schedule/time-slot-question/time-slot-question.vue +++ b/src/layouts/schedule/time-slot-question/time-slot-question.vue @@ -191,7 +191,8 @@ export default { this.selectedDate == null || this.appointmentType === AppointmentTypeStrings.IN_SHOP_OR_DROP_OFF || this.appointmentType === AppointmentTypeStrings.IN_SHOP || - this.appointmentType === AppointmentTypeStrings.DROP_OFF + this.appointmentType === AppointmentTypeStrings.DROP_OFF || + !this.availableTimeSlots ) { if (!this.selectedAnswerForTimeSlots && !this.selectedAnswerForDropOffOrInshop) { this.autoSelectTimeSlotIfOnlyOneIsAvailable();