Skip to content

Commit

Permalink
fix: floor price display
Browse files Browse the repository at this point in the history
  • Loading branch information
MartianGreed committed Dec 7, 2024
1 parent e0f078c commit 759615f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export default function TokenOffersListItem({
: "text-red-500",
)}
>
{offer.floor_difference}%
{parseFloat(offer.floor_difference).toFixed(2)}%
</p>
) : (
"_"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export default function OfferFloorDiffCell({ offer }: FloorDiffProps) {
offer.floor_difference >= 0 ? "text-green-500" : "text-red-500",
)}
>
{offer.floor_difference}%
{parseFloat(offer.floor_difference).toFixed(2)}%
</p>
) : (
"_"
Expand Down

0 comments on commit 759615f

Please sign in to comment.