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;