diff --git a/src/layouts/payment-page/payment-page.vue b/src/layouts/payment-page/payment-page.vue index 5f1306ff..1ad52fd2 100644 --- a/src/layouts/payment-page/payment-page.vue +++ b/src/layouts/payment-page/payment-page.vue @@ -562,8 +562,8 @@ export default { && providerLocation.zipCode ); - const isMobile = (serviceLocation.appointmentType === AppointmentTypeStrings.MOBILE - || serviceLocation.appointmentType === AppointmentTypeStrings.MOBILE_NOT_ITAC_AND_NOT_NOCOMP); + const isMobile = serviceLocation.appointmentType === AppointmentTypeStrings.MOBILE + || serviceLocation.appointmentType === AppointmentTypeStrings.MOBILE_NOT_ITAC_AND_NOT_NOCOMP; const serviceLocationReqs = (isMobile && mobileReqs) || (!isMobile && dropOffInshopReqs); diff --git a/src/layouts/service-location/service-location.vue b/src/layouts/service-location/service-location.vue index 20db5481..5fbb91c6 100644 --- a/src/layouts/service-location/service-location.vue +++ b/src/layouts/service-location/service-location.vue @@ -421,7 +421,7 @@ export default { } if (mobileProviderNumber) { - this.mobileProviderNumber = mobileProviderNumber; + this.setMobileProviderNumber(mobileProviderNumber); } }, setContainsMilitaryBase(val) {