diff --git a/src/layouts/schedule/schedule.vue b/src/layouts/schedule/schedule.vue index 23671a356..59af1eea3 100644 --- a/src/layouts/schedule/schedule.vue +++ b/src/layouts/schedule/schedule.vue @@ -1113,7 +1113,6 @@ export default { this.resetWaitlist(); this.preSelectedDate = null; this.shopProviderData = shopQuestionPopUpData.shopProviderData; - this.setServiceabilityDetails(shopQuestionPopUpData.serviceabilityDetails); const selectedProvider = this.shopProviderData.shopProviders.find((shopProvider) => { return shopProvider.providerNumber === shopQuestionPopUpData.selectedProviderNumber; }); 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 a9ca720ad..df0a185a3 100644 --- a/src/layouts/service-location/shop-question/shop-question-popup.vue +++ b/src/layouts/service-location/shop-question/shop-question-popup.vue @@ -310,16 +310,8 @@ export default { const selectedProvider = this.shopProviders.find( (provider) => provider.providerNumber == this.localSelectedProviderNumber ); - const serviceZipCode = selectedProvider.address.zipCode; - // retrieve serviceability details - const serviceabilityDetails = await getServiceabilityDetails( - serviceZipCode, - null, - "service-location" - ); const shopQuestionPopUpData = { - serviceabilityDetails: serviceabilityDetails.data, zipCodeData: this.zipCodeData, shopProviderData: this.localShopProviderData, selectedProviderNumber: this.localSelectedProviderNumber,