From 80915d93e263d2b4d906e25837f78345089cb042 Mon Sep 17 00:00:00 2001
From: Hayden Shively <17186559+haydenshively@users.noreply.github.com>
Date: Tue, 23 Jul 2024 12:43:46 -0500
Subject: [PATCH] Fix percentage x100 on LendingPairPeerCard
---
earn/src/components/portfolio/LendingPairPeerCard.tsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/earn/src/components/portfolio/LendingPairPeerCard.tsx b/earn/src/components/portfolio/LendingPairPeerCard.tsx
index b1ebe5ff..722f1b04 100644
--- a/earn/src/components/portfolio/LendingPairPeerCard.tsx
+++ b/earn/src/components/portfolio/LendingPairPeerCard.tsx
@@ -210,7 +210,7 @@ export default function LendingPairPeerCard(props: LendingPairPeerCardProps) {
Utilization
- {roundPercentage(activeUtilization)}%
+ {roundPercentage(activeUtilization * 100)}%