From 21ea70f73cbcb26e91cbecdbb7c0d3d2ff712eba Mon Sep 17 00:00:00 2001 From: QuickMythril Date: Sun, 4 Feb 2024 16:43:57 -0500 Subject: [PATCH] Improve order of element rendering --- plugins/plugins/core/wallet/wallet-app.src.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/plugins/core/wallet/wallet-app.src.js b/plugins/plugins/core/wallet/wallet-app.src.js index bd815d07..7967ad6f 100644 --- a/plugins/plugins/core/wallet/wallet-app.src.js +++ b/plugins/plugins/core/wallet/wallet-app.src.js @@ -4686,8 +4686,8 @@ class MultiWallet extends LitElement { } const coin = this._selectedWallet await this.fetchWalletAddress(this._selectedWallet) - await this.fetchWalletDetails(this._selectedWallet) await this.fetchWalletServer(this._selectedWallet) + await this.fetchWalletDetails(this._selectedWallet) if (this._selectedWallet == coin) { await this.renderTransactions() await this.getTransactionGrid(this._selectedWallet)