From 85ffc77983b80a102d4d8d5897a10e84cf899292 Mon Sep 17 00:00:00 2001 From: surfdude29 <149612116+surfdude29@users.noreply.github.com> Date: Wed, 25 Feb 2026 09:18:20 +0000 Subject: [PATCH] Show hashtag symbol for Mute option in menu (#9942) --- src/components/RichTextTag.tsx | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/components/RichTextTag.tsx b/src/components/RichTextTag.tsx index 6c9dc44159..8e1a5e5ce7 100644 --- a/src/components/RichTextTag.tsx +++ b/src/components/RichTextTag.tsx @@ -148,7 +148,11 @@ export function RichTextTag({ { if (isMuted) { resetUpsert() @@ -161,7 +165,9 @@ export function RichTextTag({ } }}> - {isMuted ? _(msg`Unmute ${tag}`) : _(msg`Mute ${tag}`)} + {isMuted + ? _(msg`Unmute ${isCashtag ? tag : `#${tag}`}`) + : _(msg`Mute ${isCashtag ? tag : `#${tag}`}`)}