Skip to content

Commit

Permalink
refactor: show balance and token in circles (#66)
Browse files Browse the repository at this point in the history
  • Loading branch information
secondl1ght authored Sep 9, 2024
1 parent ee623d6 commit 7d83cc6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/views/wallet/WalletInfo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,8 @@ export const WalletInfo: FC<{
)}
>
<div className="absolute left-1/2 top-1/2 -translate-x-1/2 -translate-y-1/2">
<p>{b.percent}%</p> <p>{b.name}</p>
<p>{b.ticker === 'USDT' ? b.formatted_balance : b.balance}</p>
<p>{b.ticker}</p>
</div>
</div>
);
Expand Down

0 comments on commit 7d83cc6

Please sign in to comment.