From a3eec2e3c9388d3664d3b4ab6794174fe62b824f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20G=C3=B3mez?= Date: Mon, 12 Jan 2026 10:59:19 +0100 Subject: [PATCH] feat: disable inline media and event embeds in chat replies Pass options to RichText component in ReplyPreview to disable: - All media types (images, videos, audio) via showMedia: false - Event embeds (note/nevent/naddr mentions) via showEventEmbeds: false Chat reply previews now only show text content for cleaner, more focused message context display. Co-Authored-By: Claude Sonnet 4.5 --- src/components/chat/ReplyPreview.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/components/chat/ReplyPreview.tsx b/src/components/chat/ReplyPreview.tsx index b4cb12a..197c5e5 100644 --- a/src/components/chat/ReplyPreview.tsx +++ b/src/components/chat/ReplyPreview.tsx @@ -64,7 +64,10 @@ export const ReplyPreview = memo(function ReplyPreview({ className="font-medium flex-shrink-0" />
- +
);