Turn checkpoints on by default

This commit is contained in:
Matt Rubens 2025-03-07 23:36:46 -05:00
parent e5d764ccba
commit 441f54d792
2 changed files with 2 additions and 2 deletions

View file

@ -158,7 +158,7 @@ export class Cline {
apiConfiguration,
customInstructions,
enableDiff,
enableCheckpoints = false,
enableCheckpoints = true,
checkpointStorage = "task",
fuzzyMatchThreshold,
task,

View file

@ -2389,7 +2389,7 @@ export class ClineProvider implements vscode.WebviewViewProvider {
allowedCommands: stateValues.allowedCommands,
soundEnabled: stateValues.soundEnabled ?? false,
diffEnabled: stateValues.diffEnabled ?? true,
enableCheckpoints: stateValues.enableCheckpoints ?? false,
enableCheckpoints: stateValues.enableCheckpoints ?? true,
checkpointStorage: stateValues.checkpointStorage ?? "task",
soundVolume: stateValues.soundVolume,
browserViewportSize: stateValues.browserViewportSize ?? "900x600",