Skip to content

Commit 9d76f4c

Browse files
committed
Move power steering to the bottom of experimental settings
1 parent 9bfcabb commit 9d76f4c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/shared/experiments.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
import type { AssertEqual, Equals, Keys, Values, ExperimentId } from "@roo-code/types"
22

33
export const EXPERIMENT_IDS = {
4-
POWER_STEERING: "powerSteering",
54
MARKETPLACE: "marketplace",
65
CONCURRENT_FILE_READS: "concurrentFileReads",
76
DISABLE_COMPLETION_COMMAND: "disableCompletionCommand",
7+
POWER_STEERING: "powerSteering",
88
} as const satisfies Record<string, ExperimentId>
99

1010
type _AssertExperimentIds = AssertEqual<Equals<ExperimentId, Values<typeof EXPERIMENT_IDS>>>
@@ -16,10 +16,10 @@ interface ExperimentConfig {
1616
}
1717

1818
export const experimentConfigsMap: Record<ExperimentKey, ExperimentConfig> = {
19-
POWER_STEERING: { enabled: false },
2019
MARKETPLACE: { enabled: false },
2120
CONCURRENT_FILE_READS: { enabled: false },
2221
DISABLE_COMPLETION_COMMAND: { enabled: false },
22+
POWER_STEERING: { enabled: false },
2323
}
2424

2525
export const experimentDefault = Object.fromEntries(

0 commit comments

Comments
 (0)