Skip to content

Commit

Permalink
fees page < cents fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mokelgit committed May 31, 2024
1 parent 8ec5e50 commit 04a25c9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app/(fees)/fees/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1077,8 +1077,10 @@ export default function FeesPage() {
</div>
)}
<div>
{multipliedValue < 0.1
{showCents && multipliedValue < 0.1
? "< 0.1"
: !showCents && multipliedValue < 0.001
? "< 0.001"
: Intl.NumberFormat(undefined, {
notation: "compact",
maximumFractionDigits: fractionDigits,
Expand Down

0 comments on commit 04a25c9

Please sign in to comment.