Skip to content

Commit

Permalink
hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
DavideSilva committed May 22, 2024
1 parent 9d679a6 commit 3a384d0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ const Description = ({ amount }: TDescriptionProps) => {
</div>
<div className="flex justify-between">
<div className="uppercase text-mono-800">CTND Amount</div>
<div className="text-mono-950">{amount / currentTokenPrice} CTND</div>
<div className="text-mono-950">{(amount / currentTokenPrice).toFixed(0)} CTND</div>
</div>
</div>
);
Expand Down

0 comments on commit 3a384d0

Please sign in to comment.