fix: restore large project pins on the reference map

This commit is contained in:
2026-06-16 13:57:24 +02:00
parent e2a29b41e9
commit 88e88c8b99

View File

@@ -148,7 +148,7 @@ export function InteractiveGermanyMap({
</div>
{/* 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) => (
<div
key={`minor-${idx}`}
className="absolute z-10 group/minor cursor-pointer w-10 h-10 flex items-center justify-center"
@@ -165,8 +165,8 @@ export function InteractiveGermanyMap({
</div>
))}
{/* 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;