From 486b28c409963ea2d9e7f54e359b6e655132601d Mon Sep 17 00:00:00 2001 From: buua436 Date: Wed, 17 Jun 2026 14:18:16 +0800 Subject: [PATCH] fix: show telegram chat channel (#16125) ### What problem does this PR solve? Show Telegram in the chat channel picker alongside the existing Discord and Feishu entries. ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue) --- web/src/pages/user-setting/chat-channel/index.tsx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/web/src/pages/user-setting/chat-channel/index.tsx b/web/src/pages/user-setting/chat-channel/index.tsx index 4a538f7cff..b0a416f0a0 100644 --- a/web/src/pages/user-setting/chat-channel/index.tsx +++ b/web/src/pages/user-setting/chat-channel/index.tsx @@ -58,7 +58,12 @@ const ChatChannel = () => { const { chatChannelInfo } = useChatChannelInfo(); const channelTemplates: IChatChannelInfo[] = Object.values(ChatChannelKey) .filter( - (id) => [ChatChannelKey.DISCORD, ChatChannelKey.FEISHU].includes(id), // Show only Discord and Feishu + (id) => + [ + ChatChannelKey.DISCORD, + ChatChannelKey.FEISHU, + ChatChannelKey.TELEGRAM, + ].includes(id), // Show only Discord and Feishu ) .map((id) => ({ id,