From 1da7d81122905362e1e6d76c1b8aba47f1a90a67 Mon Sep 17 00:00:00 2001 From: ruban <51721541+rooben-me@users.noreply.github.com> Date: Thu, 2 May 2024 23:22:32 -0700 Subject: [PATCH] Fix cloud data sync issue with Upstash (#4563) --- app/store/sync.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/store/sync.ts b/app/store/sync.ts index d22d6baf8..ce31ebd8f 100644 --- a/app/store/sync.ts +++ b/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; }, }, -); \ No newline at end of file +);