This commit is contained in:
Filipe Medeiros 2021-11-28 05:20:44 +00:00
parent 57c06bc0fe
commit 671cd6e96d

View file

@ -58,7 +58,14 @@ const Balance: FC<Props> = ({ className }) => {
)}
>
{showXnoBalance ? (
<> {xnoBalanceDisplay === 'small' ? '<0.01' : xnoBalanceDisplay}</>
<>
{' '}
{account?.balance === null
? '0.00'
: xnoBalanceDisplay === 'small'
? '<0.01'
: xnoBalanceDisplay}
</>
) : (
'NO'
)}