Make public room not show hash symbol

This commit is contained in:
Jack Kingsman
2026-01-17 19:50:05 -08:00
parent 8d98a93245
commit 15107f3793
5 changed files with 6 additions and 5 deletions
+2 -1
View File
@@ -606,7 +606,8 @@ export function App() {
<span className="flex flex-wrap items-baseline gap-x-2 min-w-0 flex-1">
<span className="flex-shrink-0">
{activeConversation.type === 'channel' &&
!activeConversation.name.startsWith('#')
!activeConversation.name.startsWith('#') &&
activeConversation.name !== 'Public'
? '#'
: ''}
{activeConversation.name}