We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cffea36 commit bb2937bCopy full SHA for bb2937b
webview-ui/src/components/cloud/CloudAgents.tsx
@@ -46,10 +46,10 @@ const CloudAgents: React.FC<CloudAgentsProps> = ({ cloudApiUrl, sessionToken })
46
console.error("Failed to fetch cloud agents, using mock data:", err)
47
// Use mock data on error
48
const mockAgents: CloudAgent[] = [
49
- { id: "1", name: "Code Assistant", type: "code", icon: "💻" },
50
- { id: "2", name: "Test Generator", type: "test", icon: "🧪" },
51
- { id: "3", name: "Code Reviewer", type: "review", icon: "👁️" },
52
- { id: "4", name: "Documentation Writer", type: "docs", icon: "📝" },
+ { id: "1", name: "Code Assistant", type: "code" },
+ { id: "2", name: "Test Generator", type: "test" },
+ { id: "3", name: "Code Reviewer", type: "review" },
+ { id: "4", name: "Documentation Writer", type: "docs" },
53
]
54
setAgents(mockAgents)
55
} finally {
0 commit comments