mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-09 22:31:08 +00:00
Turn checkpoints on by default
This commit is contained in:
parent
e5d764ccba
commit
441f54d792
2 changed files with 2 additions and 2 deletions
|
|
@ -158,7 +158,7 @@ export class Cline {
|
|||
apiConfiguration,
|
||||
customInstructions,
|
||||
enableDiff,
|
||||
enableCheckpoints = false,
|
||||
enableCheckpoints = true,
|
||||
checkpointStorage = "task",
|
||||
fuzzyMatchThreshold,
|
||||
task,
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue