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} );