diff --git a/frontend-vue/src/components/sidebar/ChannelListItem.vue b/frontend-vue/src/components/sidebar/ChannelListItem.vue index 3edc45f..bbd8be3 100644 --- a/frontend-vue/src/components/sidebar/ChannelListItem.vue +++ b/frontend-vue/src/components/sidebar/ChannelListItem.vue @@ -60,7 +60,7 @@ const props = defineProps() // 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' : ''}` }