From 90cbbf85319e6484f19fa9e939578c9351e31c69 Mon Sep 17 00:00:00 2001 From: saml33 Date: Thu, 17 Jun 2021 20:14:11 +1000 Subject: [PATCH] fix data passed to borrow chart --- components/stats-page/StatsTotals.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/stats-page/StatsTotals.tsx b/components/stats-page/StatsTotals.tsx index a359a4e8..674ec854 100644 --- a/components/stats-page/StatsTotals.tsx +++ b/components/stats-page/StatsTotals.tsx @@ -57,9 +57,9 @@ export default function StatsTotals() { }) borrowValues.push({ - symbol: stats[i].symbol, + symbol: trimmedStats[i].symbol, value: borrowValue, - time: stats[i].hourly, + time: trimmedStats[i].hourly, }) } }