From 7c1a7653acc22559eace606ee1937876562cb398 Mon Sep 17 00:00:00 2001 From: Wang Guan Date: Tue, 22 Oct 2024 23:41:16 +0900 Subject: [PATCH] fix syntax error --- app/store/sync.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/app/store/sync.ts b/app/store/sync.ts index 40ab64168..c297699df 100644 --- a/app/store/sync.ts +++ b/app/store/sync.ts @@ -55,8 +55,9 @@ export const useSyncStore = createPersistStore( if (!config) { return false; } - return Object.values(config).every((c) => c != null && c.toString().length > 0); - } + return Object.values(config).every( + (c) => c != null && c.toString().length > 0, + ); }, markSyncTime() {