Fix idle time min value
All checks were successful
Deploy new version of the application / Deploy Application (push) Successful in 2s

This commit is contained in:
2025-10-23 13:58:36 +02:00
parent e8c4cd3d85
commit 5c42665c8f

View File

@@ -58,7 +58,7 @@ function idle() {
let cardIndex = 0;
setInterval(function() {
idleTime+=2;
if (idleTime > 1) {
if (idleTime > 60) {
openCard(cards, cardIndex++ % cards.length);
}
}, 10000);