mirror of
https://github.com/ChatGPTNextWeb/ChatGPT-Next-Web.git
synced 2025-11-17 06:23:44 +08:00
fix syntax error
This commit is contained in:
@@ -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() {
|
||||
|
||||
Reference in New Issue
Block a user