diff --git a/src/components/PercentageMeter.tsx b/src/components/PercentageMeter.tsx index c366a951f..aeae6b3a0 100644 --- a/src/components/PercentageMeter.tsx +++ b/src/components/PercentageMeter.tsx @@ -26,7 +26,7 @@ const PercentageMeter = ({ // Use inline style attribute to avoid style tags being // constantly appended to the element. style={{ - width: `${value * 100}%`, + width: `${Math.round(value * 100)}%`, }} h={height} rounded="full"