Removed unneeded check for 'None' on getSelectedAppointmentType

This commit is contained in:
Leah Schumann 2023-05-18 08:44:57 -04:00
parent 4257828465
commit 49d6eb3a72

View file

@ -349,9 +349,7 @@ export default {
return store.getters.order.serviceLocation.zipCode;
},
getSelectedAppointmentType() {
return store.getters.order.serviceLocation.appointmentType == "None"
? null
: store.getters.order.serviceLocation.appointmentType;
return store.getters.order.serviceLocation.appointmentType;
},
getSelectedProvider() {
return store.getters.order.serviceLocation.provider;