diff --git a/src/app/(modules)/monitor/page.tsx b/src/app/(modules)/monitor/page.tsx index 0ec04ac..4fb78fc 100644 --- a/src/app/(modules)/monitor/page.tsx +++ b/src/app/(modules)/monitor/page.tsx @@ -433,10 +433,10 @@ function SyncTestButton({ label, description, siruta, mode, includeNoGeometry, a setTimeout(() => { if (pollRef.current) { clearInterval(pollRef.current); pollRef.current = null; - addLog("error", `[${label}] Timeout 60min (${formatElapsed()})`); + addLog("error", `[${label}] Timeout 3h (${formatElapsed()})`); setActionLoading(""); } - }, 60 * 60_000); + }, 3 * 60 * 60_000); } catch { addLog("error", `[${label}] Eroare retea`); setActionLoading(""); } }} disabled={!!actionLoading}