add currency symbol to total funding

This commit is contained in:
Tyler Shipe 2021-12-04 13:59:09 -05:00
parent a2dc7812a4
commit 9b7f9e2e8a
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@ const AccountFunding = () => {
}`} }`}
> >
{stats.total_funding {stats.total_funding
? `${stats.total_funding?.toFixed(6)}` ? `$${stats.total_funding?.toFixed(6)}`
: '-'} : '-'}
</div> </div>
</Td> </Td>