From 37e45c115bb35237134d7f582edccb69421ad327 Mon Sep 17 00:00:00 2001 From: "Tom (plebeius.eth)" Date: Tue, 3 Sep 2024 10:23:50 +0200 Subject: [PATCH] Update post-mobile.tsx --- src/components/post-mobile/post-mobile.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/post-mobile/post-mobile.tsx b/src/components/post-mobile/post-mobile.tsx index 677241c7..2c6a5e22 100644 --- a/src/components/post-mobile/post-mobile.tsx +++ b/src/components/post-mobile/post-mobile.tsx @@ -180,7 +180,7 @@ const ReplyBacklinks = ({ post }: PostProps) => { return ( cid && parentCid && - replies && ( + replies.length > 0 && (
{replies.map( (reply: Comment, index: number) => reply?.parentCid === cid && reply?.cid && ,