From bb62472aeb1fffbbcdfe6f44eb416d48021057ec Mon Sep 17 00:00:00 2001 From: orangesurf Date: Tue, 9 Jun 2026 11:31:17 +0200 Subject: [PATCH] Increase demo cycle time from 15s to 5mins --- frontend/src/app/shared/common.utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/app/shared/common.utils.ts b/frontend/src/app/shared/common.utils.ts index 30a81cb0f..c9a04fb09 100644 --- a/frontend/src/app/shared/common.utils.ts +++ b/frontend/src/app/shared/common.utils.ts @@ -230,7 +230,7 @@ export function handleDemoRedirect(route: ActivatedRoute, router: Router) { const index = path.indexOf(params.next); if (index >= 0) { const nextPath = path[(index + 1) % path.length]; - setTimeout(() => { window.location.replace(`${params.next}?next=${nextPath}`); }, 15000); + setTimeout(() => { window.location.replace(`${params.next}?next=${nextPath}`); }, 300000); } } }