|
@@ -241,7 +241,7 @@ function renderBalances (props: Props, allAccounts: string[], t: <T = string> (k
|
|
|
<Label label={t<string>('total')} />
|
|
|
<FormatBalance
|
|
|
className='result'
|
|
|
- value={balancesAll.votingBalance}
|
|
|
+ value={balancesAll.freeBalance.add(balancesAll.reservedBalance)}
|
|
|
/>
|
|
|
</>
|
|
|
)}
|
|
@@ -361,7 +361,7 @@ function renderBalances (props: Props, allAccounts: string[], t: <T = string> (k
|
|
|
if (withBalanceToggle) {
|
|
|
return (
|
|
|
<>
|
|
|
- <Expander summary={<FormatBalance value={balancesAll?.votingBalance} />}>
|
|
|
+ <Expander summary={<FormatBalance value={balancesAll && balancesAll.freeBalance.add(balancesAll.reservedBalance)} />}>
|
|
|
<div className='body column'>
|
|
|
{allItems}
|
|
|
</div>
|