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}`}`)}