From de3a4dfb4faeaba0f122a5ee7c011572e8bbbf90 Mon Sep 17 00:00:00 2001 From: Lemon Date: Thu, 2 Apr 2026 12:37:31 -0700 Subject: [PATCH] Use '#' instead of 'Hashtags' for t-tag filter label --- src/components/SpellContent.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/SpellContent.tsx b/src/components/SpellContent.tsx index 4832a458..83dbabb1 100644 --- a/src/components/SpellContent.tsx +++ b/src/components/SpellContent.tsx @@ -35,7 +35,7 @@ function formatTimestamp(value: string): string { /** Friendly display name for tag filter letters. */ function tagFilterLabel(letter: string): string { - if (letter === 't') return 'Hashtags'; + if (letter === 't') return '#'; return `#${letter}`; }