From 7bd78ce3c8a921541d547d8025602682d7124b9c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anton=20Jyrki=C3=A4inen?= Date: Tue, 3 Feb 2026 12:14:21 +0200 Subject: [PATCH 1/2] disable e-zone --- app/components/ZoneSymbolMarkers.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/components/ZoneSymbolMarkers.js b/app/components/ZoneSymbolMarkers.js index d1e7aa3..00ea639 100644 --- a/app/components/ZoneSymbolMarkers.js +++ b/app/components/ZoneSymbolMarkers.js @@ -22,8 +22,8 @@ const getZoneIcon = (zone, svgSize) => { return ; case "D": return ; - case "E": - return ; +// case "E": +// return ; default: return
; } From 2adb1e6dad897db6db0ddbddcbe61edab600bd45 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anton=20Jyrki=C3=A4inen?= Date: Tue, 3 Feb 2026 12:18:40 +0200 Subject: [PATCH 2/2] lint fixes --- app/components/ZoneSymbolMarkers.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/components/ZoneSymbolMarkers.js b/app/components/ZoneSymbolMarkers.js index 00ea639..453c92f 100644 --- a/app/components/ZoneSymbolMarkers.js +++ b/app/components/ZoneSymbolMarkers.js @@ -5,7 +5,7 @@ import AZone from "../icons/icon-Zone-A"; import BZone from "../icons/icon-Zone-B"; import CZone from "../icons/icon-Zone-C"; import DZone from "../icons/icon-Zone-D"; -import EZone from "../icons/icon-Zone-E"; +// import EZone from "../icons/icon-Zone-E"; import { mapSelectionToBbox, bboxDiameterInMeters, @@ -22,8 +22,8 @@ const getZoneIcon = (zone, svgSize) => { return ; case "D": return ; -// case "E": -// return ; + // case "E": + // return ; default: return
; }