From d951fb57dab3e8e763f93ea4326d6fc4a4bd9e98 Mon Sep 17 00:00:00 2001 From: Jay Sitter Date: Fri, 16 Jun 2023 22:24:32 -0400 Subject: [PATCH] fix: Fix missing prop --- src/shared/components/common/badges.tsx | 10 ++++------ src/shared/components/community/sidebar.tsx | 2 +- 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/src/shared/components/common/badges.tsx b/src/shared/components/common/badges.tsx index 858b986..49c0888 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 (