diff --git a/app/(main)/ClientComponents/main/InteractiveMap.tsx b/app/(main)/ClientComponents/main/InteractiveMap.tsx index 4ceec0b..7ad2861 100644 --- a/app/(main)/ClientComponents/main/InteractiveMap.tsx +++ b/app/(main)/ClientComponents/main/InteractiveMap.tsx @@ -56,14 +56,14 @@ export function InteractiveMap({ fill="transparent" onMouseEnter={() => setTooltipData(null)} /> - {filteredFeatures.map((feature) => { + {filteredFeatures.map((feature, index) => { const isHighlighted = countries.includes(feature.properties.iso_a2_eh) const serverCount = serverCounts[feature.properties.iso_a2_eh] || 0 return (