From 48444bd37bb84c1050ad4aa3c79cc9bdacf99cb4 Mon Sep 17 00:00:00 2001 From: Pete Gadomski Date: Mon, 6 Oct 2025 16:39:58 -0600 Subject: [PATCH] fix: can't pick a single item --- src/components/map.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/map.tsx b/src/components/map.tsx index 579b85f..14e80ae 100644 --- a/src/components/map.tsx +++ b/src/components/map.tsx @@ -126,7 +126,7 @@ export default function Map({ getLineColor: collections ? inverseLineColor : lineColor, getLineWidth: 2, lineWidthUnits: "pixels", - pickable: value?.type !== "Collection", + pickable: value?.type !== "Collection" && value?.type !== "Feature", onClick: (info) => { setPicked(info.object); },