Skip to content

Commit

Permalink
fix: add decimals to native currency price (#854)
Browse files Browse the repository at this point in the history
  • Loading branch information
rin-st committed May 29, 2024
1 parent bf5212e commit c670c1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/nextjs/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export const Footer = () => {
<div>
<div className="btn btn-primary btn-sm font-normal gap-1 cursor-auto">
<CurrencyDollarIcon className="h-4 w-4" />
<span>{nativeCurrencyPrice}</span>
<span>{nativeCurrencyPrice.toFixed(2)}</span>
</div>
</div>
)}
Expand Down

0 comments on commit c670c1f

Please sign in to comment.