Skip to content

Commit

Permalink
fix(wallet): darkmode in Review & send view (#4569)
Browse files Browse the repository at this point in the history
  • Loading branch information
evavirseda authored Dec 19, 2024
1 parent 855e5bc commit bd7d2c9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export function TxnAmount({ amount, coinType, subtitle, approximation }: TxnAmou
return Number(amount) !== 0 ? (
<Card type={CardType.Filled}>
<CardImage type={ImageType.BgSolid}>
<CoinIcon coinType={coinType} rounded size={ImageIconSize.Large} hasCoinWrapper />
<CoinIcon coinType={coinType} rounded size={ImageIconSize.Small} />
</CardImage>
<CardBody
title={`${approximation ? '~' : ''}${formatAmount} ${symbol}`}
Expand Down

0 comments on commit bd7d2c9

Please sign in to comment.