fix(@desktop/wallet): load collectible on initial account set

fixes #3121
This commit is contained in:
Anthony Laibe 2021-08-02 10:23:16 +02:00 committed by Iuri Matias
parent 20b1bed309
commit 9cd0f77e92
1 changed files with 1 additions and 1 deletions

View File

@ -127,7 +127,7 @@ QtObject:
# If it's the first account we ever get, use its list as our first lists
if (self.accountsView.accounts.rowCount == 1):
self.tokensView.setCurrentAssetList(account.assetList)
discard self.accountsView.setCurrentAccountByIndex(0)
self.setCurrentAccountByIndex(0)
proc transactionCompleted*(self: WalletView, success: bool, txHash: string, revertReason: string = "") {.signal.}