Update post-mobile.tsx

This commit is contained in:
Tom (plebeius.eth)
2024-09-03 10:23:50 +02:00
parent 2b9e3c1f9c
commit 37e45c115b
+1 -1
View File
@@ -180,7 +180,7 @@ const ReplyBacklinks = ({ post }: PostProps) => {
return (
cid &&
parentCid &&
replies && (
replies.length > 0 && (
<div className={styles.mobileReplyBacklinks}>
{replies.map(
(reply: Comment, index: number) => reply?.parentCid === cid && reply?.cid && <ReplyQuotePreview key={index} isBacklinkReply={true} backlinkReply={reply} />,