Skip to content

Commit

Permalink
fix: Naming style for backup command bundles
Browse files Browse the repository at this point in the history
  • Loading branch information
dstoc committed Nov 4, 2024
1 parent c13222d commit 2c8d1fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/backup-commands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export function backupCommands(backup: Backup): Command[] {
return backup.hasConfig()
? [
{
description: 'Turn off backup',
description: 'Turn off backup...',
execute: async () => {
return yesNoBundle({
description: 'Are you sure you want to turn off backup?',
Expand All @@ -18,7 +18,7 @@ export function backupCommands(backup: Backup): Command[] {
]
: [
{
description: 'Turn on backup',
description: 'Turn on backup...',
execute: async () => {
function chooseFolderAndFinish(grouping: Snapshots) {
return async () =>
Expand Down

0 comments on commit 2c8d1fa

Please sign in to comment.