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
This commit is contained in:
Natalie 2024-08-28 17:11:01 -04:00 committed by GitHub
parent 06a59bfe03
commit 1bce2b0e28
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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