Increase sync progress intervals to 10s

From 5s
This commit is contained in:
Pas 2025-11-30 20:59:52 -07:00 committed by GitHub
parent c460c15966
commit f8afa2c501
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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[],