소스 검색

Removed spaces

ruban 1 년 전
부모
커밋
8ef2617eec
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3 3
      app/store/sync.ts

+ 3 - 3
app/store/sync.ts

@@ -95,7 +95,7 @@ export const useSyncStore = createPersistStore(
       const provider = get().provider;
       const config = get()[provider];
       const client = this.getClient();
-    
+
       try {
         const remoteState = await client.get(config.username);
         if (!remoteState || remoteState === "") {
@@ -113,11 +113,11 @@ export const useSyncStore = createPersistStore(
         console.log("[Sync] failed to get remote state", e);
         throw e;
       }
-    
+
       await client.set(config.username, JSON.stringify(localState));
 
       this.markSyncTime();
-    },    
+    },
 
     async check() {
       const client = this.getClient();