Fix type in sync.ts

Simple typo fix.
This commit is contained in:
Jason O'Gray 2023-10-10 11:24:45 -04:00 committed by GitHub
parent f78008c1b2
commit ea59ab5176
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -101,7 +101,7 @@ export const useSyncStore = createPersistStore(
mergeAppState(localState, remoteState); mergeAppState(localState, remoteState);
setLocalAppState(localState); setLocalAppState(localState);
} catch (e) { } catch (e) {
console.log("[Sync] failed to get remoate state", e); console.log("[Sync] failed to get remote state", e);
} }
await client.set(config.username, JSON.stringify(localState)); await client.set(config.username, JSON.stringify(localState));