Skip to content

Commit

Permalink
feat: no count up on asset details (because of virtualization)
Browse files Browse the repository at this point in the history
  • Loading branch information
0xKheops committed Dec 12, 2024
1 parent 8d5bb97 commit 8a381fc
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export const AssetBalanceCellValue = ({
)}
>
<div>
<Tokens amount={tokens} symbol={symbol} isBalance />
<Tokens amount={tokens} symbol={symbol} isBalance noCountUp />
</div>
{locked ? (
<div className="pb-1">
Expand All @@ -60,7 +60,7 @@ export const AssetBalanceCellValue = ({
</div>
) : null}
</div>
<div>{fiat === null ? "-" : <Fiat amount={fiat} isBalance />}</div>
<div>{fiat === null ? "-" : <Fiat amount={fiat} isBalance noCountUp />}</div>
</div>
</WithTooltip>
)
Expand Down

0 comments on commit 8a381fc

Please sign in to comment.