fix: remove stupid hashtag

This commit is contained in:
2025-08-22 19:36:25 +02:00
parent 452192d0a9
commit cf15a0f9c2

View File

@@ -60,7 +60,7 @@ const props = defineProps<Props>()
// Better ARIA label that announces the channel name and unread count
const channelAriaLabel = computed(() => {
let label = `#${props.channel.name}`
let label = `${props.channel.name}`
if (props.unreadCount) {
label += `, ${props.unreadCount} unread message${props.unreadCount > 1 ? 's' : ''}`
}