diff --git a/src/layouts/address-lookup/customer-questions/address-questions/address-questions.vue b/src/layouts/address-lookup/customer-questions/address-questions/address-questions.vue index d4915f793..099049723 100644 --- a/src/layouts/address-lookup/customer-questions/address-questions/address-questions.vue +++ b/src/layouts/address-lookup/customer-questions/address-questions/address-questions.vue @@ -271,8 +271,16 @@ export default ({ }, watch: { addressModel: { - handler(newValue){ - //this.displayNoMatchWarning = false; + handler(newValue) { + if (!newValue.city && + !newValue.state && + !newValue.zipCode) { + return; + } + + if (this.displayNoMatchWarning === true) { + this.displayNoMatchWarning = false; + } }, deep: true }