diff --git a/src/layouts/service-location/mobile-location-modal-questions/mobile-location-modal-questions.vue b/src/layouts/service-location/mobile-location-modal-questions/mobile-location-modal-questions.vue index 9c5b87858..9bba10910 100644 --- a/src/layouts/service-location/mobile-location-modal-questions/mobile-location-modal-questions.vue +++ b/src/layouts/service-location/mobile-location-modal-questions/mobile-location-modal-questions.vue @@ -161,7 +161,7 @@ export default { values: { state: updatedServiceZipCodeInfo.state, zipCode: updatedServiceZipCodeInfo.zipCode, - isVehicleProtected: updatedServiceZipCodeInfo.isVehicleProtected + isVehicleProtected: updatedServiceZipCodeInfo.isVehicleProtected, }, }); }, @@ -200,7 +200,7 @@ export default { this.resetComponent({ state: newValue.addressQuestions.state, zipCode: newValue.addressQuestions.zipCode, - isVehicleProtected: newValue.isVehicleProtected + isVehicleProtected: newValue.isVehicleProtected, }); }, deep: true, diff --git a/src/layouts/service-location/service-zip-modal-question/service-zip-modal-question.vue b/src/layouts/service-location/service-zip-modal-question/service-zip-modal-question.vue index c8397e490..50041cec3 100644 --- a/src/layouts/service-location/service-zip-modal-question/service-zip-modal-question.vue +++ b/src/layouts/service-location/service-zip-modal-question/service-zip-modal-question.vue @@ -142,7 +142,7 @@ export default { this.resetAlerts(); const zipCodeData = await this.getZipCodeData(this.internalModel.zipCode); - + if (!zipCodeData.isValid) { this.displayInvalidZipAlert = true; this.focusOnZipInput();