File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
frontends/web/src/routes/account/summary Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -189,15 +189,15 @@ export function AccountsSummary({
189
189
< AddBuyReceiveOnEmptyBalances accounts = { accounts } balances = { balances } />
190
190
) : undefined
191
191
} />
192
- { accountsByKeystore && balancePerCoin &&
192
+ { accountsByKeystore &&
193
193
( accountsByKeystore . map ( ( { keystore, accounts } ) =>
194
194
< SummaryBalance
195
195
keystoreDisambiguatorName = { isAmbiguiousName ( keystore . name , accountsByKeystore ) ? keystore . rootFingerprint : undefined }
196
196
connected = { keystore . connected }
197
197
keystoreName = { keystore . name }
198
198
key = { keystore . rootFingerprint }
199
199
accounts = { accounts }
200
- totalBalancePerCoin = { balancePerCoin [ keystore . rootFingerprint ] }
200
+ totalBalancePerCoin = { balancePerCoin ? balancePerCoin [ keystore . rootFingerprint ] : undefined }
201
201
totalBalance = { accountsTotalBalance ? accountsTotalBalance [ keystore . rootFingerprint ] : undefined }
202
202
balances = { balances }
203
203
/>
You can’t perform that action at this time.
0 commit comments