From 834108f8d48714ae568c644e1f1be59c4795623c Mon Sep 17 00:00:00 2001 From: Usman Baig Date: Fri, 16 Jan 2026 20:11:07 +0100 Subject: [PATCH] fix: correct closing tags in Countries.tsx --- components/dashboard/Countries.tsx | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) 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)} -
-
- ))} + ))} +
) }