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 16f82b5 commit 0f97962Copy full SHA for 0f97962
components/dashboard/src/settings/SelectIDE.tsx
@@ -75,12 +75,7 @@ export default function SelectIDE(props: SelectIDEProps) {
75
const [ideOptions, setIdeOptions] = useState<IDEOptions | undefined>(undefined);
76
useEffect(() => {
77
(async () => {
78
- const ideOptions = await getGitpodService().server.getIDEOptions();
79
- // TODO: Compatible with ide-config not deployed, need revert after ide-config deployed
80
- delete ideOptions.options["code-latest"];
81
- delete ideOptions.options["code-desktop-insiders"];
82
-
83
- setIdeOptions(ideOptions);
+ setIdeOptions(await getGitpodService().server.getIDEOptions());
84
})();
85
}, []);
86
0 commit comments