From 1bce2b0e281abc43acab12bbac13f7ffe067b552 Mon Sep 17 00:00:00 2001 From: Natalie <78037386+CuriousMagpie@users.noreply.github.com> Date: Wed, 28 Aug 2024 17:11:01 -0400 Subject: [PATCH] Orb of Rebirth fix (#15300) * add await to buyModal.vue, small cosmetic improvement * attempt to fix t.response * removing attempt to fix t.response * add break to asyncResource.js to prevent t.response error * revert asyncResource.js change --- website/client/src/components/shops/buyModal.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/client/src/components/shops/buyModal.vue b/website/client/src/components/shops/buyModal.vue index bd4403b458..349f129cb8 100644 --- a/website/client/src/components/shops/buyModal.vue +++ b/website/client/src/components/shops/buyModal.vue @@ -534,7 +534,7 @@ color: $white; height: 2rem; line-height: 16px; - margin: auto -1rem -1rem; + margin: 24px auto -24px; } .gems-left { @@ -847,7 +847,7 @@ export default { } if (this.genericPurchase) { this.makeGenericPurchase(this.item, 'buyModal', this.selectedAmountToBuy); - this.purchased(this.item.text); + await this.purchased(this.item.text); } }