From f8afa2c501293a0aa03e56cb3d39c5031339157d Mon Sep 17 00:00:00 2001 From: Pas <74743263+Pasithea0@users.noreply.github.com> Date: Sun, 30 Nov 2025 20:59:52 -0700 Subject: [PATCH] Increase sync progress intervals to 10s From 5s --- src/stores/progress/ProgressSyncer.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stores/progress/ProgressSyncer.tsx b/src/stores/progress/ProgressSyncer.tsx index 67aae877..d9980676 100644 --- a/src/stores/progress/ProgressSyncer.tsx +++ b/src/stores/progress/ProgressSyncer.tsx @@ -9,7 +9,7 @@ import { useBackendUrl } from "@/hooks/auth/useBackendUrl"; import { AccountWithToken, useAuthStore } from "@/stores/auth"; import { ProgressUpdateItem, useProgressStore } from "@/stores/progress"; -const syncIntervalMs = 5 * 1000; +const syncIntervalMs = 10 * 1000; // 10 second intervals async function syncProgress( items: ProgressUpdateItem[],