Skip to content

Commit eb46db3

Browse files
authored
Merge pull request #561 from velopert/fix/check-profile
fix: add filter for nullalble profile
2 parents 4d27626 + 9703569 commit eb46db3

File tree

1 file changed

+11
-9
lines changed

1 file changed

+11
-9
lines changed

src/components/post/PostCommentsList.tsx

+11-9
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,17 @@ const PostCommentsList: React.FC<PostCommentsListProps> = ({
2020
}) => {
2121
return (
2222
<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-
))}
23+
{comments
24+
.filter((comment) => !!comment.user?.profile)
25+
.map((comment) => (
26+
<PostCommentItem
27+
comment={comment}
28+
key={comment.id}
29+
ownComment={currentUserId === (comment.user && comment.user.id)}
30+
onRemove={onRemove}
31+
ownPost={ownPost}
32+
/>
33+
))}
3234
</PostCommentsListBlock>
3335
);
3436
};

0 commit comments

Comments
 (0)