Fix long hashtag overflow in page title header

This commit is contained in:
Chad Curtis
2026-03-17 09:26:19 -05:00
parent e55b90202b
commit 0fbc562ee0
+1 -1
View File
@@ -63,7 +63,7 @@ export function HashtagPage() {
<Link to="/" className="p-2 rounded-full hover:bg-secondary transition-colors sidebar:hidden">
<ArrowLeft className="size-5" />
</Link>
<h1 className="text-xl font-bold flex-1">#{tag}</h1>
<h1 className="text-xl font-bold flex-1 truncate min-w-0">#{tag}</h1>
{user && tag && (
<Button
size="sm"