Skip to content

Commit 70fa490

Browse files
authored
Merge pull request RooCodeInc#1479 from RooVetGit/fix_checkpoints_default
Turn checkpoints on by default
2 parents e5d764c + 441f54d commit 70fa490

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/core/Cline.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ export class Cline {
158158
apiConfiguration,
159159
customInstructions,
160160
enableDiff,
161-
enableCheckpoints = false,
161+
enableCheckpoints = true,
162162
checkpointStorage = "task",
163163
fuzzyMatchThreshold,
164164
task,

src/core/webview/ClineProvider.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2389,7 +2389,7 @@ export class ClineProvider implements vscode.WebviewViewProvider {
23892389
allowedCommands: stateValues.allowedCommands,
23902390
soundEnabled: stateValues.soundEnabled ?? false,
23912391
diffEnabled: stateValues.diffEnabled ?? true,
2392-
enableCheckpoints: stateValues.enableCheckpoints ?? false,
2392+
enableCheckpoints: stateValues.enableCheckpoints ?? true,
23932393
checkpointStorage: stateValues.checkpointStorage ?? "task",
23942394
soundVolume: stateValues.soundVolume,
23952395
browserViewportSize: stateValues.browserViewportSize ?? "900x600",

0 commit comments

Comments
 (0)