diff --git a/src/components/LogAnalyticsData.tsx b/src/components/LogAnalyticsData.tsx index 174865e4..0c3e1ec8 100644 --- a/src/components/LogAnalyticsData.tsx +++ b/src/components/LogAnalyticsData.tsx @@ -510,7 +510,7 @@ function TopCountriesList(props: TopCountriesListProps) { )} {/* `aspect-475/335` is the same aspect ratio as the world map component */} -
    +
      {props.countries.length === 0 && (
      {props.isLoading ? ( @@ -523,12 +523,12 @@ function TopCountriesList(props: TopCountriesListProps) { )}
      )} - {props.countries.map((country) => { + {props.countries.slice(0, 3).map((country) => { const percent = country.count / props.total; return (