We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4d27626 + 9703569 commit eb46db3Copy full SHA for eb46db3
src/components/post/PostCommentsList.tsx
@@ -20,15 +20,17 @@ const PostCommentsList: React.FC<PostCommentsListProps> = ({
20
}) => {
21
return (
22
<PostCommentsListBlock>
23
- {comments.map((comment) => (
24
- <PostCommentItem
25
- comment={comment}
26
- key={comment.id}
27
- ownComment={currentUserId === (comment.user && comment.user.id)}
28
- onRemove={onRemove}
29
- ownPost={ownPost}
30
- />
31
- ))}
+ {comments
+ .filter((comment) => !!comment.user?.profile)
+ .map((comment) => (
+ <PostCommentItem
+ comment={comment}
+ key={comment.id}
+ ownComment={currentUserId === (comment.user && comment.user.id)}
+ onRemove={onRemove}
+ ownPost={ownPost}
32
+ />
33
+ ))}
34
</PostCommentsListBlock>
35
);
36
};
0 commit comments