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,