diff --git a/src/shared/components/common/badges.tsx b/src/shared/components/common/badges.tsx index 858b9864..49c0888b 100644 --- a/src/shared/components/common/badges.tsx +++ b/src/shared/components/common/badges.tsx @@ -1,7 +1,7 @@ import { Link } from "inferno-router"; import { CommunityAggregates, - CommunityView, + CommunityId, SiteAggregates, } from "lemmy-js-client"; import { i18n } from "../../i18next"; @@ -9,7 +9,7 @@ import { numToSI } from "../../utils"; interface BadgesProps { counts: CommunityAggregates | SiteAggregates; - community_view: CommunityView; + communityId?: CommunityId; } const isCommunityAggregates = ( @@ -24,7 +24,7 @@ const isSiteAggregates = ( return "communities" in counts; }; -export const Badges = ({ counts, community_view }: BadgesProps) => { +export const Badges = ({ counts, communityId }: BadgesProps) => { return (