diff --git a/src/components/settings/channel-list-tab.tsx b/src/components/settings/channel-list-tab.tsx index d2767ed..a2cb67c 100644 --- a/src/components/settings/channel-list-tab.tsx +++ b/src/components/settings/channel-list-tab.tsx @@ -2,6 +2,7 @@ import { useCallback, useEffect, useState } from "react" import { + AlertCircle, Loader2, MessageCircle, Pencil, @@ -27,6 +28,12 @@ import { AlertDialogHeader, AlertDialogTitle, } from "@/components/ui/alert-dialog" +import { + Tooltip, + TooltipContent, + TooltipProvider, + TooltipTrigger, +} from "@/components/ui/tooltip" import { listChatChannels, deleteChatChannel, @@ -250,8 +257,30 @@ export function ChannelListTab() {
{ch.name} - + {ch.channel_type} + {ch.channel_type === "weixin" && ( + + + + + + + + + {t("weixinReconnectNotice")} + + + + )}