Merge pull request #3107 from Safelite/feature/CASH-2472

CASH-2472 - Reverted the change as it got merged to develop directly
This commit is contained in:
mvalaiyapathi 2026-03-18 11:01:54 -04:00 committed by GitHub
commit 88b5dd54d2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2054,7 +2054,14 @@ export default {
}
},
async showMultiLocationModal() {
if (!this.selectedRouteCodeData?.routeCode) {
const showMultiLocationAppointment = experimentMixin.methods.getSettingValue(
experimentSettings.SHOW_MULTI_LOCATION_APPT
);
if (
!this.selectedRouteCodeData?.routeCode &&
showMultiLocationAppointment?.toLowerCase() === "true"
) {
let maxDayRangeToShowPmTimeslot = experimentMixin.methods.getSettingValue(
experimentSettings.SHOW_PM_DAYS_MULTI_LOCATION
);