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; return store.getters.order.serviceLocation.zipCode;
}, },
getSelectedAppointmentType() { getSelectedAppointmentType() {
return store.getters.order.serviceLocation.appointmentType == "None" return store.getters.order.serviceLocation.appointmentType;
? null
: store.getters.order.serviceLocation.appointmentType;
}, },
getSelectedProvider() { getSelectedProvider() {
return store.getters.order.serviceLocation.provider; return store.getters.order.serviceLocation.provider;