Increase time of demo mode from 3s to 15s

This commit is contained in:
wiz 2024-10-25 16:49:07 +09:00
parent 2ceb9001a1
commit 8b01a83948
No known key found for this signature in database
GPG Key ID: A394E332255A6173

View File

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