From 8b01a839483fe54cb130191c6896f8394c5a3bef Mon Sep 17 00:00:00 2001 From: wiz Date: Fri, 25 Oct 2024 16:49:07 +0900 Subject: [PATCH] Increase time of demo mode from 3s to 15s --- 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 6cb23ccf3..f329b55e4 100644 --- a/frontend/src/app/shared/common.utils.ts +++ b/frontend/src/app/shared/common.utils.ts @@ -243,7 +243,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}`) }, 3000); + setTimeout(() => { window.location.replace(`${params.next}?next=${nextPath}`) }, 15000); } } }