We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5da191 commit b3bf08dCopy full SHA for b3bf08d
1 file changed
apps/meteor/client/components/message/content/attachments/QuoteAttachment.tsx
@@ -73,7 +73,7 @@ export const QuoteAttachment = ({ attachment }: QuoteAttachmentProps): ReactElem
73
<Attachments attachments={attachment.attachments} id={attachment.attachments[0]?.title_link} />
74
</AttachmentInner>
75
)}
76
- {attachment.text?.length <= maxMessageParseSize && attachment.md ? (
+ {attachment.text.length <= maxMessageParseSize && attachment.md ? (
77
<MessageContentBody md={attachment.md} />
78
) : (
79
attachment.text.substring(attachment.text.indexOf('\n') + 1)
0 commit comments