Actually fix race condition?

This commit is contained in:
Alex Humphries 2026-01-19 08:47:39 -05:00
parent c62206c6b0
commit 89bf1c176c

View file

@ -287,9 +287,10 @@ export default {
this.nearbyShops = []; this.nearbyShops = [];
this.updateShops(true).then(() => { this.updateShops(true).then(() => {
this.internalProviderNumber = this.nearbyShops[0]?.providerNumber; this.internalProviderNumber = this.nearbyShops[0]?.providerNumber;
}); }).finally(() => {
this.$nextTick().then(() => { this.$nextTick().then(() => {
this.openingModal = false; this.openingModal = false;
});
}); });
this.forceServiceZipRerender(); this.forceServiceZipRerender();
}, },