Skip to content

Commit fe4f563

Browse files
committed
Remove unsupported ChatGPT client
Signed-off-by: David Gageot <[email protected]>
1 parent 37d5665 commit fe4f563

File tree

1 file changed

+13
-39
lines changed

1 file changed

+13
-39
lines changed

src/extension/ui/src/components/tabs/YourClients.tsx

Lines changed: 13 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import {
77
Card,
88
CardContent,
99
CardHeader,
10-
Chip,
1110
CircularProgress,
1211
Collapse,
1312
Divider,
@@ -16,12 +15,10 @@ import {
1615
ListItem,
1716
ListItemText,
1817
Stack,
19-
Tooltip,
20-
Typography,
18+
Typography
2119
} from '@mui/material';
2220
import { useState } from 'react';
2321

24-
import ChatGPTIcon from '../../assets/chatgpt.svg';
2522
import ClaudeIcon from '../../assets/claude-ai-icon.svg';
2623
import ContinueIcon from '../../assets/continue.svg';
2724
import CursorIcon from '../../assets/cursor.svg';
@@ -74,29 +71,6 @@ const MCPClientSettings = ({ appProps }: MCPClientSettingsProps) => {
7471
);
7572
}
7673
)}
77-
78-
<Card>
79-
<CardHeader
80-
avatar={
81-
<Avatar
82-
variant="square"
83-
src={ChatGPTIcon}
84-
alt="ChatGPT Desktop"
85-
sx={{
86-
width: 32,
87-
height: 32,
88-
borderRadius: 1,
89-
}}
90-
/>
91-
}
92-
title={
93-
<Typography variant="subtitle2">
94-
{'ChatGPT'}{' '}
95-
<Chip label="Coming soon" color="primary" size="small" />
96-
</Typography>
97-
}
98-
/>
99-
</Card>
10074
</Stack>
10175

10276
<Divider>Or</Divider>
@@ -239,10 +213,10 @@ function ClientSetting({
239213
<CircularProgress size={12} />
240214
</>
241215
)) || (
242-
<Typography sx={{ fontSize: 12, width: 90 }}>
243-
Disconnect
244-
</Typography>
245-
)}
216+
<Typography sx={{ fontSize: 12, width: 90 }}>
217+
Disconnect
218+
</Typography>
219+
)}
246220
</Stack>
247221
</Button>
248222
)}
@@ -279,10 +253,10 @@ function ClientSetting({
279253
<CircularProgress size={12} />
280254
</>
281255
)) || (
282-
<Typography sx={{ fontSize: 12, width: 90 }}>
283-
Connect
284-
</Typography>
285-
)}
256+
<Typography sx={{ fontSize: 12, width: 90 }}>
257+
Connect
258+
</Typography>
259+
)}
286260
</Stack>
287261
</Button>
288262
)}
@@ -315,10 +289,10 @@ function ClientSetting({
315289
<CircularProgress size={12} />
316290
</>
317291
)) || (
318-
<Typography sx={{ fontSize: 12, width: 90 }}>
319-
Connect
320-
</Typography>
321-
)}
292+
<Typography sx={{ fontSize: 12, width: 90 }}>
293+
Connect
294+
</Typography>
295+
)}
322296
</Stack>
323297
</Button>
324298
)}

0 commit comments

Comments
 (0)