From 88e88c8b9962b6f2961f929ed6ad3c4e29648420 Mon Sep 17 00:00:00 2001 From: Marc Mintel Date: Tue, 16 Jun 2026 13:57:24 +0200 Subject: [PATCH] fix: restore large project pins on the reference map --- components/blocks/InteractiveGermanyMap.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/components/blocks/InteractiveGermanyMap.tsx b/components/blocks/InteractiveGermanyMap.tsx index db06385eb..2f7f837d0 100644 --- a/components/blocks/InteractiveGermanyMap.tsx +++ b/components/blocks/InteractiveGermanyMap.tsx @@ -148,7 +148,7 @@ export function InteractiveGermanyMap({ {/* Minor Location Markers (The 100+ generic projects) */} - {finalLocations.filter(l => l.type === 'minor_node' || l.type === 'project').map((loc, idx) => ( + {finalLocations.filter(l => l.type === 'minor_node').map((loc, idx) => (
))} - {/* Major Location Markers (HQ, Branch) */} - {finalLocations.filter(l => l.type === 'hq' || l.type === 'branch').map((loc, idx) => { + {/* Major Location Markers (HQ, Branch, Project) */} + {finalLocations.filter(l => l.type !== 'minor_node').map((loc, idx) => { const isHQ = loc.type === 'hq'; const isBranch = loc.type === 'branch'; const isActive = activeLocation?.id === loc.id;