From c2737bf0bf7d9b719ef57ac7763cc65a3ddcb930 Mon Sep 17 00:00:00 2001 From: Abdullah Atta Date: Thu, 22 Feb 2024 22:43:05 +0500 Subject: [PATCH] web: disable auto sync --- apps/web/src/stores/app-store.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/src/stores/app-store.ts b/apps/web/src/stores/app-store.ts index c4d155ae3..ebdaf1a49 100644 --- a/apps/web/src/stores/app-store.ts +++ b/apps/web/src/stores/app-store.ts @@ -118,7 +118,7 @@ class AppStore extends BaseStore { async (full, force, lastSynced) => { if (!this.get().isAutoSyncEnabled) return; - await this.get().sync(full, force, lastSynced); + // await this.get().sync(full, force, lastSynced); } );