Skip to content

Commit

Permalink
remove placeholder for borrow upkeep rate
Browse files Browse the repository at this point in the history
  • Loading branch information
saml33 committed Dec 18, 2023
1 parent 7ff417f commit 8f3da63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/components/explore/token-page/TokenMangoStats.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const TokenMangoStats = ({
? (mangoData.deposit_rate * 100).toFixed(2)
: '–'
const borrowRate = !isNaN(mangoData?.borrow_rate)
? (mangoData.borrow_rate * 100 + 0.5).toFixed(2)
? (mangoData.borrow_rate * 100).toFixed(2)
: '–'
const available = !isNaN(mangoData?.available)
? numberCompacter.format(mangoData.available)
Expand Down

1 comment on commit 8f3da63

@vercel
Copy link

@vercel vercel bot commented on 8f3da63 Dec 18, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.