CASH-1421 | Zip code change was not working for non Big Truck

This commit is contained in:
Scott Kiener 2025-08-20 10:28:01 -04:00
parent fdc5b93c10
commit 5052ffe140

View file

@ -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;
}