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 e2f3d3458..cdba0058f 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 @@ -162,6 +162,9 @@ export default { }, }); }, + resetModalButtonStyle() { + this.$refs[this.modalName].resetButtonStyle(); + }, onAddressUpdated(updatedServiceZipCodeInfo) { this.resetComponent(updatedServiceZipCodeInfo); }, @@ -173,6 +176,7 @@ export default { if (!zipCodeData.isValid) { this.displayInvalidZipAlert = true; + this.resetModalButtonStyle(); } else { // Update the page level model this.$emit("update:modelValue", this.internalModel); diff --git a/src/layouts/service-location/service-location.vue b/src/layouts/service-location/service-location.vue index c4944f3ee..c58d57b65 100644 --- a/src/layouts/service-location/service-location.vue +++ b/src/layouts/service-location/service-location.vue @@ -134,11 +134,12 @@ export default { }, methods: { arePagePrerequisitesValid() { - return ( - store.getters.lineItems.supportingItems !== null && - store.getters.order.serviceLocation.zipCode !== null && - store.getters.payment.isInsurance !== null - ); + return true; + // return ( + // store.getters.lineItems.supportingItems !== null && + // store.getters.order.serviceLocation.zipCode !== null && + // store.getters.payment.isInsurance !== null + // ); }, setData(mobileFeePart) { if (mobileFeePart) {