diff options
Diffstat (limited to 'src/lib/CommandPalette/syncActions.ts')
| -rw-r--r-- | src/lib/CommandPalette/syncActions.ts | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/lib/CommandPalette/syncActions.ts b/src/lib/CommandPalette/syncActions.ts index c787f348..49859221 100644 --- a/src/lib/CommandPalette/syncActions.ts +++ b/src/lib/CommandPalette/syncActions.ts @@ -41,9 +41,7 @@ export const syncActions = ( lastPush: new Date(), })); }) - .catch((error) => - console.error("Settings sync push failed", error), - ); + .catch((error) => console.error("Settings sync push failed", error)); }, }, { @@ -82,9 +80,7 @@ export const syncActions = ( ); }); }) - .catch((error) => - console.error("Settings sync pull failed", error), - ); + .catch((error) => console.error("Settings sync pull failed", error)); }, }, ]; |