mirror of
https://github.com/ChatGPTNextWeb/ChatGPT-Next-Web.git
synced 2025-11-16 22:13:47 +08:00
fix syntax error
This commit is contained in:
@@ -55,8 +55,9 @@ export const useSyncStore = createPersistStore(
|
|||||||
if (!config) {
|
if (!config) {
|
||||||
return false;
|
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() {
|
markSyncTime() {
|
||||||
|
|||||||
Reference in New Issue
Block a user