commit 5b760528d39f4384e0c69f4ddd3426884b7b2dd8
parent 99e78c4a88da398f355eb9f714bbb71fb0a7e0dd
Author: Brian Graham <brian@buildingbetterteams.de>
Date: Sun, 5 Apr 2026 08:51:16 +0200
Fix duplicate coefficientOfVariation declaration
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Diffstat:
1 file changed, 0 insertions(+), 2 deletions(-)
diff --git a/dashboard/src/components/CellDetail.tsx b/dashboard/src/components/CellDetail.tsx
@@ -176,8 +176,6 @@ export default function CellDetail({ runs, axisValues }: CellDetailProps) {
const maxScore = scores.length > 0 ? Math.max(...scores) : 0;
const medianScore = median(scores);
const range = maxScore - minScore;
- const coefficientOfVariation = avgScore > 0 ? (range / avgScore) * 100 : 0;
-
const stdDev = scores.length > 1
? Math.sqrt(scores.reduce((sum, s) => sum + (s - avgScore) ** 2, 0) / (scores.length - 1))
: 0;