diff --git a/src/shared/components/common/badges.tsx b/src/shared/components/common/badges.tsx index 56390342..858b9864 100644 --- a/src/shared/components/common/badges.tsx +++ b/src/shared/components/common/badges.tsx @@ -79,6 +79,22 @@ export const Badges = ({ counts, community_view }: BadgesProps) => { })}{" "} / {i18n.t("number_of_months", { count: 6, formattedCount: 6 })} + {isSiteAggregates(counts) && ( + <> +
  • + {i18n.t("number_of_users", { + count: Number(counts.users), + formattedCount: numToSI(counts.users), + })} +
  • +
  • + {i18n.t("number_of_communities", { + count: Number(counts.communities), + formattedCount: numToSI(counts.communities), + })} +
  • + + )} {isCommunityAggregates(counts) && (
  • {i18n.t("number_of_subscribers", { @@ -87,14 +103,6 @@ export const Badges = ({ counts, community_view }: BadgesProps) => { })}
  • )} - {isSiteAggregates(counts) && ( -
  • - {i18n.t("number_of_communities", { - count: Number(counts.communities), - formattedCount: numToSI(counts.communities), - })} -
  • - )}
  • {i18n.t("number_of_posts", { count: Number(counts.posts),