fixed value get from response for balance

This commit is contained in:
Kostya
2024-01-27 23:29:58 +03:00
parent f9a12a90a9
commit b43cadea0e

View File

@@ -377,7 +377,7 @@ export default {
eventBus.on('Updatebalance-saper', () => { eventBus.on('Updatebalance-saper', () => {
GetCurrentMoney(GetCookie("AUTHTOKEN"), GetCookie("SearchToken")) GetCurrentMoney(GetCookie("AUTHTOKEN"), GetCookie("SearchToken"))
.then(response => { .then(response => {
this.balance = response this.balance = response.currentMoney
}) })
}) })
}, },