From 5052ffe140a388d5c1993069ac5cea2f4f4009f4 Mon Sep 17 00:00:00 2001 From: Scott Kiener Date: Wed, 20 Aug 2025 10:28:01 -0400 Subject: [PATCH] CASH-1421 | Zip code change was not working for non Big Truck --- .../shop-question/shop-question-popup.vue | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/layouts/service-location/shop-question/shop-question-popup.vue b/src/layouts/service-location/shop-question/shop-question-popup.vue index 673fddb15..cb94f8ba0 100644 --- a/src/layouts/service-location/shop-question/shop-question-popup.vue +++ b/src/layouts/service-location/shop-question/shop-question-popup.vue @@ -295,14 +295,14 @@ export default { this.displayNoServiceAlert = true; return null; } - - getShopProviderData(this.localZipCode).then(async (result) => { - this.localShopProviderData = result.data; - this.numberOfShopsToDisplay = 3; - this.updateShopsForZip(); - this.isLoading = false; - }); } + + getShopProviderData(this.localZipCode).then(async (result) => { + this.localShopProviderData = result.data; + this.numberOfShopsToDisplay = 3; + this.updateShopsForZip(); + this.isLoading = false; + }); } else { this.isLoading = false; }