From 90f8f6f3cdafcf2b85061d08dc992d24348e8b69 Mon Sep 17 00:00:00 2001 From: Chris Redelinghuys Date: Fri, 21 Feb 2025 14:44:08 -0500 Subject: [PATCH] CASH-273 --- src/layouts/service-location/service-location.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;