Skip to content

Commit

Permalink
[379] feat: enable auto export by default (#380)
Browse files Browse the repository at this point in the history
  • Loading branch information
maelchiotti authored Jan 29, 2025
1 parent 04de5f8 commit 25a300f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/common/preferences/preference_key.dart
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ enum PreferenceKey<T> {
showLabelsListInEditorPage<bool>(true),

// Backup
enableAutoExport<bool>(false),
autoExportFrequency<int>(1),
enableAutoExport<bool>(true),
autoExportFrequency<int>(3),
autoExportEncryption<bool>(false, backup: false),
autoExportPassword<String>('', secure: true, backup: false),
autoExportDirectory<String>('', backup: false),
Expand Down

0 comments on commit 25a300f

Please sign in to comment.