Skip to content

Commit

Permalink
Fix type in sync.ts
Browse files Browse the repository at this point in the history
Simple typo fix.
  • Loading branch information
ograycode committed Oct 10, 2023
1 parent f78008c commit ea59ab5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/store/sync.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ export const useSyncStore = createPersistStore(
mergeAppState(localState, remoteState);
setLocalAppState(localState);
} 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));
Expand Down

0 comments on commit ea59ab5

Please sign in to comment.