CASH-2472 - Reverted the change as it got merged to develop directly

This commit is contained in:
Minojhini Valaiyapathi 2026-03-18 10:50:35 -04:00
parent d6bf78bca9
commit 00afde2c6a

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
);