diff --git a/components/dashboard/Countries.tsx b/components/dashboard/Countries.tsx index 10ba72d..e7095e4 100644 --- a/components/dashboard/Countries.tsx +++ b/components/dashboard/Countries.tsx @@ -44,15 +44,16 @@ export default function Locations({ countries, cities }: LocationProps) {
{countries.map((country, index) => (
-
- {getFlagComponent(country.country)} - {getCountryName(country.country)} +
+ {getFlagComponent(country.country)} + {getCountryName(country.country)} +
+
+ {formatNumber(country.pageviews)} +
-
- {formatNumber(country.pageviews)} -
-
- ))} + ))} +
) }