From 7e73cd47197580a8d83aee484be972a842930cd0 Mon Sep 17 00:00:00 2001
From: Jinwoo Hong <73622457+Jinwoo-H@users.noreply.github.com>
Date: Thu, 11 Jun 2026 14:38:36 -0700
Subject: [PATCH] fix(mobile): use Claude icon for Agent Teams
Use the Claude logo for the Claude Agent Teams option on mobile.
---
mobile/src/components/MobileAgentIcon.tsx | 2 +-
mobile/src/tasks/mobile-agent-catalog.test.ts | 6 ++++++
mobile/src/tasks/mobile-tui-agents.ts | 1 -
3 files changed, 7 insertions(+), 2 deletions(-)
diff --git a/mobile/src/components/MobileAgentIcon.tsx b/mobile/src/components/MobileAgentIcon.tsx
index 74b6658f0..ade35feda 100644
--- a/mobile/src/components/MobileAgentIcon.tsx
+++ b/mobile/src/components/MobileAgentIcon.tsx
@@ -79,7 +79,7 @@ function AgentLetterIcon({ letter, size = 16 }: { letter: string; size?: number
}
export function MobileAgentIcon({ agentId, size = 16 }: { agentId: string; size?: number }) {
- if (agentId === 'claude') {
+ if (agentId === 'claude' || agentId === 'claude-agent-teams') {
return
}
if (agentId === 'codex') {
diff --git a/mobile/src/tasks/mobile-agent-catalog.test.ts b/mobile/src/tasks/mobile-agent-catalog.test.ts
index 479cf3f6f..78ce1e6aa 100644
--- a/mobile/src/tasks/mobile-agent-catalog.test.ts
+++ b/mobile/src/tasks/mobile-agent-catalog.test.ts
@@ -38,4 +38,10 @@ describe('mobile agent catalog', () => {
new Set(parseDesktopConfiguredAgents())
)
})
+
+ it('uses the bundled Claude icon path for Claude Agent Teams', () => {
+ expect(MOBILE_AGENT_CATALOG.find((agent) => agent.id === 'claude-agent-teams')).toEqual(
+ expect.not.objectContaining({ faviconDomain: expect.any(String) })
+ )
+ })
})
diff --git a/mobile/src/tasks/mobile-tui-agents.ts b/mobile/src/tasks/mobile-tui-agents.ts
index 79108a8e8..8cecd2434 100644
--- a/mobile/src/tasks/mobile-tui-agents.ts
+++ b/mobile/src/tasks/mobile-tui-agents.ts
@@ -72,7 +72,6 @@ export const MOBILE_TUI_AGENT_LABELS: Record = {
}
export const MOBILE_TUI_AGENT_FAVICON_DOMAINS: Partial> = {
- 'claude-agent-teams': 'anthropic.com',
openclaude: 'openclaude.gitlawb.com',
grok: 'x.ai',
copilot: 'github.com',