From c78a6f8bc96a25bde6da115d7099e37de6686261 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ullrich=20Sch=C3=A4fer?= Date: Sat, 11 Apr 2026 00:37:24 +0200 Subject: [PATCH] Remove outline ring from waypoint highlight permanently MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The subtle size bump (24→28px) is sufficient visual feedback without the outline ring. Co-Authored-By: Claude Opus 4.6 (1M context) --- apps/planner/app/components/PlannerMap.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/apps/planner/app/components/PlannerMap.tsx b/apps/planner/app/components/PlannerMap.tsx index 28dbce0..670cfb3 100644 --- a/apps/planner/app/components/PlannerMap.tsx +++ b/apps/planner/app/components/PlannerMap.tsx @@ -18,7 +18,6 @@ function waypointIcon(index: number, overnight?: boolean, highlighted?: boolean) const bg = overnight ? "#8B6D3A" : "#2563eb"; const size = highlighted ? 28 : 24; const offset = size / 2; - const ring = ""; return L.divIcon({ className: "", html: `
${overnight ? "☾" : index + 1}
`, iconSize: [0, 0], });