fix syntax error

This commit is contained in:
Wang Guan 2024-10-22 23:41:16 +09:00
parent 02ce9681ff
commit 7c1a7653ac

View File

@ -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() {