From 89bf1c176c8053b8ef02637a91e092f3796d9e72 Mon Sep 17 00:00:00 2001 From: Alex Humphries Date: Mon, 19 Jan 2026 08:47:39 -0500 Subject: [PATCH] Actually fix race condition? --- src/layouts/service-location/shop-address/shop-address.vue | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/layouts/service-location/shop-address/shop-address.vue b/src/layouts/service-location/shop-address/shop-address.vue index 14be8168..02f1c9d5 100644 --- a/src/layouts/service-location/shop-address/shop-address.vue +++ b/src/layouts/service-location/shop-address/shop-address.vue @@ -287,9 +287,10 @@ export default { this.nearbyShops = []; this.updateShops(true).then(() => { this.internalProviderNumber = this.nearbyShops[0]?.providerNumber; - }); - this.$nextTick().then(() => { - this.openingModal = false; + }).finally(() => { + this.$nextTick().then(() => { + this.openingModal = false; + }); }); this.forceServiceZipRerender(); },