diff --git a/src/components/groups/PostList.tsx b/src/components/groups/PostList.tsx index 4bd2d1d5..b4d7e784 100644 --- a/src/components/groups/PostList.tsx +++ b/src/components/groups/PostList.tsx @@ -118,8 +118,8 @@ export function PostList({ communityId, showOnlyApproved = false, pendingOnly = const approvedPost = JSON.parse(approval.content) as NostrEvent; - // Skip if the post itself is a reply - if (approvedPost.kind === KINDS.GROUP_POST_REPLY) { + // Skip if the post itself is of an unsupported kind + if (approvedPost.kind !== KINDS.GROUP_POST) { return null; }