Increase demo cycle time from 15s to 5mins

This commit is contained in:
orangesurf 2026-06-09 11:31:17 +02:00
parent 5ac9caa2ef
commit bb62472aeb
No known key found for this signature in database

View file

@ -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);
}
}
}