From 8ef2617eec823ea5a6f647be762a3345f52cae0c Mon Sep 17 00:00:00 2001 From: ruban <51721541+rooben-me@users.noreply.github.com> Date: Thu, 2 May 2024 23:24:41 -0700 Subject: [PATCH] Removed spaces --- app/store/sync.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/store/sync.ts b/app/store/sync.ts index ce31ebd8f24..d3582e3c935 100644 --- a/app/store/sync.ts +++ b/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();