Skip to content

Commit

Permalink
Fix percentage x100 on LendingPairPeerCard
Browse files Browse the repository at this point in the history
  • Loading branch information
haydenshively authored Jul 23, 2024
1 parent ba1d0dd commit 80915d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion earn/src/components/portfolio/LendingPairPeerCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ export default function LendingPairPeerCard(props: LendingPairPeerCardProps) {
<Text size='S' weight='bold' color='rgba(130, 160, 182, 1)'>
Utilization
</Text>
<Display size='L'>{roundPercentage(activeUtilization)}%</Display>
<Display size='L'>{roundPercentage(activeUtilization * 100)}%</Display>
</SmallCardBodyItem>
<SmallCardBodyItem>
<Text size='S' weight='bold' color='rgba(130, 160, 182, 1)'>
Expand Down

0 comments on commit 80915d9

Please sign in to comment.