From 7783d233d2909f0f618b417d89c41a71779cec44 Mon Sep 17 00:00:00 2001 From: CarlNation Date: Fri, 1 Dec 2023 14:43:03 -0500 Subject: [PATCH] csr-1853 prettier --- src/layouts/service-location/service-location.vue | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/layouts/service-location/service-location.vue b/src/layouts/service-location/service-location.vue index 1c25b8f40..e6cb2138e 100644 --- a/src/layouts/service-location/service-location.vue +++ b/src/layouts/service-location/service-location.vue @@ -479,7 +479,7 @@ export default { async forwardButtonAction() { // clear items not needed for appointmentType if (this.selectedAppointmentType == AppointmentTypeStrings.IN_SHOP) { - // if we have a provider.zipCodeCtu that's different than the servicelocation.zipCodeCtu then they + // if we have a provider.zipCodeCtu that's different than the servicelocation.zipCodeCtu then they // may have selected a shop in a different ctu. change the servicelocation zip/ctu if different if (this.zipCodeCtu != this.selectedProvider.address.zipCodeCtu) { this.zipCodeCtu = this.selectedProvider.address.zipCodeCtu; @@ -490,8 +490,11 @@ export default { this.streetAddress = null; } - if (this.selectedAppointmentType == AppointmentTypeStrings.MOBILE && - this.selectedProvider && this.selectedProvider.address) { + if ( + this.selectedAppointmentType == AppointmentTypeStrings.MOBILE && + this.selectedProvider && + this.selectedProvider.address + ) { this.selectedProvider.address.streetAddress = null; this.selectedProvider.address.city = null; this.selectedProvider.address.state = null;