diff --git a/components/dashboard/DottedMap.tsx b/components/dashboard/DottedMap.tsx index f0799d8..0a6d7b8 100644 --- a/components/dashboard/DottedMap.tsx +++ b/components/dashboard/DottedMap.tsx @@ -22,7 +22,7 @@ function getCountryName(code: string): string { export default function DottedMap({ data, className }: DottedMapProps) { const width = 150 const height = 68 - const dotRadius = 0.2 + const dotRadius = 0.25 const [tooltip, setTooltip] = useState<{ x: number; y: number; country: string; pageviews: number } | null>(null) const { points, addMarkers } = createMap({ width, height, mapSamples: 8000 }) @@ -78,7 +78,7 @@ export default function DottedMap({ data, className }: DottedMapProps) {