From 3f0fe859a5941487f3e9ddea0df2948ee27c86a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ullrich=20Sch=C3=A4fer?= Date: Fri, 10 Apr 2026 23:57:27 +0200 Subject: [PATCH] Fix lint: remove unused variable in ElevationChart Co-Authored-By: Claude Opus 4.6 (1M context) --- apps/planner/app/components/ElevationChart.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/apps/planner/app/components/ElevationChart.tsx b/apps/planner/app/components/ElevationChart.tsx index 9f2b269..999d958 100644 --- a/apps/planner/app/components/ElevationChart.tsx +++ b/apps/planner/app/components/ElevationChart.tsx @@ -177,7 +177,6 @@ export function ElevationChart({ yjs, onHover, days }: ElevationChartProps) { // Day dividers if (days && days.length > 1) { for (let d = 0; d < days.length - 1; d++) { - const day = days[d]!; // Find the point closest to the day boundary distance const boundaryDist = days.slice(0, d + 1).reduce((sum, s) => sum + s.distance, 0); const bx = toX(boundaryDist);