diff --git a/src/pages/settings/AgentsPage.tsx b/src/pages/settings/AgentsPage.tsx index 1044796..bd7ab76 100644 --- a/src/pages/settings/AgentsPage.tsx +++ b/src/pages/settings/AgentsPage.tsx @@ -12,7 +12,7 @@ export default function AgentsPage() { const load = async () => { try { const members = await getMembers(); - setAgents(members.filter((m) => m.type === "agent")); + setAgents(members.filter((m) => m.type === "agent" || m.type === "bridge")); } finally { setLoading(false); } @@ -22,6 +22,11 @@ export default function AgentsPage() { load(); }, []); + const typeIcon = (type: string) => { + if (type === "bridge") return { bg: "bg-purple-500/20", text: "text-purple-400", icon: "🔗" }; + return { bg: "bg-blue-500/20", text: "text-blue-400", icon: "🤖" }; + }; + return (