Jelajahi Sumber

Fix type in sync.ts

Simple typo fix.
Jason O'Gray 1 tahun lalu
induk
melakukan
ea59ab5176
1 mengubah file dengan 1 tambahan dan 1 penghapusan
  1. 1 1
      app/store/sync.ts

+ 1 - 1
app/store/sync.ts

@@ -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));