Merge branch 'release/2025.09.25' into feature/bugfix/CASH-1499-test

This commit is contained in:
AdamCaouetteSafelite 2025-09-17 15:31:46 -04:00 committed by GitHub
commit bac7c28409
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -650,7 +650,15 @@ export default {
} }
}, },
showTimeSlotQuestion() { showTimeSlotQuestion() {
return this.selectedDate && this.appointmentTypeFromAppointmentTypeQuestion; var selectedDate = this.selectedDate;
if (
this.selectedDate &&
this.selectedDate.includes("mobile") &&
!this.isMobileSelected
) {
selectedDate = this.getSelectedDate();
}
return selectedDate && this.appointmentTypeFromAppointmentTypeQuestion;
}, },
isMobileStaticRecalibrationApplicable() { isMobileStaticRecalibrationApplicable() {
return ( return (