diff --git a/src/layouts/service-location/service-location.vue b/src/layouts/service-location/service-location.vue index 69eef0d8b..5ab45533e 100644 --- a/src/layouts/service-location/service-location.vue +++ b/src/layouts/service-location/service-location.vue @@ -156,7 +156,7 @@ export default { isRecalibrationServiceableInshop: null, isGlassServiceableMobile: null, isRecalibrationServiceableMobile: null, - selectedAppointmentType: null, + selectedAppointmentType: this.getSelectedAppointmentType(), selectedProvider: this.getSelectedProvider(), selectedProviderNumber: this.getSelectedProvider().providerNumber, mobileFeePart: null, @@ -350,6 +350,9 @@ export default { getServiceZipCodeFromStore() { return store.getters.order.serviceLocation.zipCode; }, + getSelectedAppointmentType() { + return store.getters.order.serviceLocation.appointmentType; + }, getSelectedProvider() { return store.getters.order.serviceLocation.provider ?? defaultProvider; },