Merge pull request #2783 from Safelite/feature/CASH-1421

CASH-1421 | Changing shop was broken for non Big Truck
This commit is contained in:
scottkiener-at-safelite 2025-08-20 10:52:21 -04:00 committed by GitHub
commit 47fe28c12e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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