Skip to content

Commit

Permalink
Remove the USD price in claimed balance
Browse files Browse the repository at this point in the history
For issue #1445
  • Loading branch information
rishav-karanjit authored Nov 8, 2023
1 parent d9fa599 commit ba1ede3
Showing 1 changed file with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -483,6 +483,21 @@ export const VestingPaymentCard = ({
</div>
)}

<div className="flex flex-row items-start justify-between gap-8">
<p className="link-text">{t('title.claimedBalance')}</p>

{/* leading-5 to match link-text's line-height. */}
<div className="caption-text flex flex-col items-end gap-1 text-right font-mono">
{/* leading-5 to match link-text's line-height. */}
<TokenAmountDisplay
amount={claimedAmount}
className="leading-5 text-text-body"
decimals={token.decimals}
symbol={token.symbol}
/>
</div>

</div>
</div>

{!lazyInfo.loading &&
Expand Down

0 comments on commit ba1ede3

Please sign in to comment.