소스 검색

Fix cloud data sync issue with Upstash (#4563)

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

+ 2 - 1
app/store/sync.ts

@@ -115,6 +115,7 @@ export const useSyncStore = createPersistStore(
       }
     
       await client.set(config.username, JSON.stringify(localState));
+
       this.markSyncTime();
     },    
 
@@ -146,4 +147,4 @@ export const useSyncStore = createPersistStore(
       return newState as any;
     },
   },
-);
+);