Skip to content

Commit bb2937b

Browse files
committed
Mock data fiz
1 parent cffea36 commit bb2937b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

webview-ui/src/components/cloud/CloudAgents.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,10 @@ const CloudAgents: React.FC<CloudAgentsProps> = ({ cloudApiUrl, sessionToken })
4646
console.error("Failed to fetch cloud agents, using mock data:", err)
4747
// Use mock data on error
4848
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: "📝" },
49+
{ id: "1", name: "Code Assistant", type: "code" },
50+
{ id: "2", name: "Test Generator", type: "test" },
51+
{ id: "3", name: "Code Reviewer", type: "review" },
52+
{ id: "4", name: "Documentation Writer", type: "docs" },
5353
]
5454
setAgents(mockAgents)
5555
} finally {

0 commit comments

Comments
 (0)