From 1d1a02527b83d9d0892664755ec28b3ae13e3aba Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Mon, 9 Oct 2023 02:23:16 -0400 Subject: [PATCH] fix: use sync not progress --- src/components/lume/LumeDashboard/LumeDashboard.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/lume/LumeDashboard/LumeDashboard.tsx b/src/components/lume/LumeDashboard/LumeDashboard.tsx index d17e549..43dad1f 100644 --- a/src/components/lume/LumeDashboard/LumeDashboard.tsx +++ b/src/components/lume/LumeDashboard/LumeDashboard.tsx @@ -87,8 +87,8 @@ const CircularProgress = ({ chain: Network; className?: string; }) => { - const progressOffset = ((100 - chain.progress) / 100) * 282.74; // These math are not mathing - const textOffset = (chain.progress / 100) * (30 - 44) + 44; + const progressOffset = ((100 - chain.sync) / 100) * 282.74; // These math are not mathing + const textOffset = (chain.sync / 100) * (30 - 44) + 44; return ( - {chain.progress} + {chain.sync} );