fix(replies): prevent inline quote links from forcing line breaks

This commit is contained in:
plebeius
2026-02-12 16:17:44 +08:00
parent 9dc3686cf2
commit 378242cdde
2 changed files with 6 additions and 4 deletions
+1 -1
View File
@@ -179,7 +179,7 @@ const NumberQuoteLink = ({ number, threadPostCid }: { number: number; threadPost
return <span>{`>>${number}`}</span>;
}
return <ReplyQuotePreview isQuotelinkReply={true} quotelinkReply={comment} isOP={isOP} />;
return <ReplyQuotePreview isQuotelinkReply={true} quotelinkReply={comment} isOP={isOP} showTrailingBreak={false} />;
};
const renderAnchorLink = (children: React.ReactNode, href: string, threadPostCid?: string) => {