Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 1d1f1b3

Browse files
committedJul 18, 2024·
nit follow up
1 parent 01087d3 commit 1d1f1b3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎components/dashboard/src/user-settings/SelectIDE.tsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ import { converter } from "../service/public-api";
1414
import { isOrganizationOwned } from "@gitpod/public-api-common/lib/user-utils";
1515
import Alert from "../components/Alert";
1616
import { useFeatureFlag } from "../data/featureflag-query";
17+
import { IDESettingsVersion } from "@gitpod/gitpod-protocol/lib/ide-protocol";
1718

1819
export type IDEChangedTrackLocation = "workspace_list" | "workspace_start" | "preferences";
1920
interface SelectIDEProps {
@@ -50,7 +51,7 @@ export default function SelectIDE(props: SelectIDEProps) {
5051
additionalData: {
5152
workspaceAutostartOptions,
5253
ideSettings: {
53-
settingVersion: "2.1",
54+
settingVersion: IDESettingsVersion,
5455
defaultIde: selectedIde,
5556
useLatestVersion: useLatestVersion,
5657
preferToolbox: preferToolbox,

0 commit comments

Comments
 (0)
Please sign in to comment.