diff --git a/dash/src/components/WorkflowPanel.tsx b/dash/src/components/WorkflowPanel.tsx index df58e66a..c5a6f2d4 100644 --- a/dash/src/components/WorkflowPanel.tsx +++ b/dash/src/components/WorkflowPanel.tsx @@ -82,7 +82,10 @@ export function WorkflowPanel({ current }: { current: Current }) { {Math.round(coverage * 100)}%} + // Floor, never round: near-complete coverage with unpriced calls + // outstanding must not render as the 100% reserved for genuinely + // complete pricing. + value={{Math.floor(coverage * 100)}%} /> )}