From bf9646214404dcc31468b4f336e6111ce3dcc563 Mon Sep 17 00:00:00 2001 From: Adam Caouette Date: Mon, 5 Jan 2026 12:10:03 -0500 Subject: [PATCH] Revert "Merge pull request #2963 from Safelite/feature/CASH-1790" This reverts commit 454e187b3903b4e8436e6b4d33a461e9aa059c9a, reversing changes made to 59d4b42609ad4f4a2f6850878de82048b836df8c. --- src/layouts/schedule/schedule.vue | 31 ++++++++++++++----- .../time-slot-question/time-slot-question.vue | 18 +++-------- 2 files changed, 28 insertions(+), 21 deletions(-) diff --git a/src/layouts/schedule/schedule.vue b/src/layouts/schedule/schedule.vue index 654c7b01a..1ebf47c7e 100644 --- a/src/layouts/schedule/schedule.vue +++ b/src/layouts/schedule/schedule.vue @@ -167,7 +167,6 @@ :timeSlotsForSelectedDate="timeSlotsForSelectedDate" :isSameDay="isSameDay" :selectedRouteCodeData="selectedRouteCodeData" - :isDatePickerDoneInitializing="isDatePickerDoneInitializing" @waitListRequested="handleWaitListRequested" />
@@ -137,7 +133,6 @@ export default { isSameDay: Boolean, displayWaitList: Boolean, selectedRouteCodeData: Object, - isDatePickerDoneInitializing: Boolean, }, data() { return { @@ -191,9 +186,6 @@ export default { this.updateDropoffAndTimeSlotAnswersFromSelectedRouteCodeData(newValue); }, timeSlotsForSelectedDate() { - if (!this.isDatePickerDoneInitializing) { - return; - } // needed otherwise it nulls these too early and prevents a previously selected time slot from auto-selecting this.selectedAnswerForDropOffOrInshop = null; this.selectedAnswerForTimeSlots = null; this.autoSelectTimeSlotIfOnlyOneIsAvailable(); @@ -397,7 +389,7 @@ export default { this.answersForDropOffQuestion[0].value !== PICK_A_TIME_BUTTON_VALUE ); }, - displayTimeSlotQuestion() { + shouldDisplayTimeSlotQuestion() { return ( this.selectedAnswerForDropOffOrInshop == PICK_A_TIME_BUTTON_VALUE || !this.isDropOffAppointmentAvailable