From cf15a0f9c241a4996a940d3bf5073e41b135d35f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oriol=20G=C3=B3mez?= Date: Fri, 22 Aug 2025 19:36:25 +0200 Subject: [PATCH] fix: remove stupid hashtag --- frontend-vue/src/components/sidebar/ChannelListItem.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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' : ''}` }