Skip to content

Commit 39cd1b8

Browse files
authored
fix: clients renaming (#439)
* fix: clients renaming * test: update
1 parent aabf35a commit 39cd1b8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

renderer/src/features/clients/components/card-client.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ import { useMutationUnregisterClient } from '../hooks/use-mutation-unregister-cl
1313
const CLIENT_TYPE_LABEL_MAP = {
1414
'roo-code': 'Roo Code',
1515
cline: 'Cline',
16-
'vscode-insider': 'VS Code Insider',
17-
vscode: 'VS Code',
16+
'vscode-insider': 'VS Code Insider - Copilot',
17+
vscode: 'VS Code - Copilot',
1818
cursor: 'Cursor',
1919
'claude-code': 'Claude Code',
2020
} as const

renderer/src/routes/__tests__/clients.test.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ describe('Clients Route', () => {
1616
).toBeInTheDocument()
1717
})
1818

19-
expect(screen.getByText('VS Code')).toBeInTheDocument()
19+
expect(screen.getByText('VS Code - Copilot')).toBeInTheDocument()
2020
expect(screen.getByText('Cursor')).toBeInTheDocument()
2121
expect(screen.getByText('Claude Code')).toBeInTheDocument()
2222
expect(screen.getAllByRole('switch')).toHaveLength(5)

0 commit comments

Comments
 (0)