diff --git a/app/(main)/ClientComponents/InteractiveMap.tsx b/app/(main)/ClientComponents/InteractiveMap.tsx index 5c54f1d..3f2f096 100644 --- a/app/(main)/ClientComponents/InteractiveMap.tsx +++ b/app/(main)/ClientComponents/InteractiveMap.tsx @@ -59,7 +59,7 @@ export function InteractiveMap({ feature.properties.iso_a3, ); const countryCode = Object.entries(countryCodeMapping).find( - ([_, alpha3]) => alpha3 === feature.properties.iso_a3, + ([,alpha3]) => alpha3 === feature.properties.iso_a3, )?.[0]; const serverCount = countryCode ? serverCounts[countryCode] || 0 diff --git a/bun.lockb b/bun.lockb index 099cd7f..0406a32 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/package.json b/package.json index 3003c40..63d087f 100644 --- a/package.json +++ b/package.json @@ -32,7 +32,6 @@ "country-flag-icons": "^1.5.13", "d3-geo": "^3.1.1", "d3-selection": "^3.0.0", - "dotted-map": "^2.2.3", "eslint-plugin-simple-import-sort": "^12.1.1", "flag-icons": "^7.2.3", "framer-motion": "^12.0.0-alpha.2",