From 141ebc33f53e30a521f2b9d3e61ea12de2b24cd9 Mon Sep 17 00:00:00 2001 From: Scott Kiener Date: Tue, 15 Jul 2025 16:01:08 -0400 Subject: [PATCH] Removed watcher --- .../shop-question/shop-question-popup.vue | 17 ----------------- 1 file changed, 17 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 274e78f02..6396ce401 100644 --- a/src/layouts/service-location/shop-question/shop-question-popup.vue +++ b/src/layouts/service-location/shop-question/shop-question-popup.vue @@ -323,7 +323,6 @@ export default { this.displayNoShopsAlert = false; this.localShopProviderData = result.data; this.updateShopsForZip(this.newZipCode); - this.selectedProvider = new Provider(); }); } } @@ -405,14 +404,6 @@ export default { this.displayNoShopsAlert = false; }, async setZipCodeAndShop() { - if ( - this.displayInvalidZipAlert || - this.displayNoShopsAlert || - !this.selectedProviderNumber - ) { - return; - } - const selectedProvider = this.shopProviders.find( (provider) => provider.providerNumber == this.selectedProviderNumber ); @@ -492,14 +483,6 @@ export default { .slice(0, numberToGet); }, }, - watch: { - shopProviderData: { - immediate: true, - handler(newVal) { - this.localShopProviderData = newVal; - }, - }, - }, components: { modal, textLink,