diff --git a/src/layouts/service-location/service-location.vue b/src/layouts/service-location/service-location.vue index a9d508243..7b89b847d 100644 --- a/src/layouts/service-location/service-location.vue +++ b/src/layouts/service-location/service-location.vue @@ -474,7 +474,7 @@ export default { //creating async function as the computed property can not directly handle asynchronous operations or promises. async setMobileLocationQuestions(newValue) { var newZipCode = newValue.addressQuestions.zipCode; - if (newValue.addressQuestions.zipCode !== this.zipCode) { + if (newZipCode !== this.zipCode) { await getShopProviderData(newZipCode).then((result) => { if (this.isServiceableMobile) { this.shopProviderData = result.data;