I should seriously look at what I'm commiting before I commit it.... >_< dw I won't do this in professional context
All checks were successful
Deploy with Docker Compose / deploy (push) Successful in 1m26s

This commit is contained in:
2026-02-20 16:28:16 +00:00
parent e016e3af46
commit 3c40eb9f08

View File

@@ -17,7 +17,7 @@ const currentUrl = computed(() => images[currentIndex.value].url);
let nextId;
function nextRandomImage() {
function nextImage() {
clearTimeout(nextId);
currentIndex.value = (currentIndex.value + 1) % images.length;
nextId = setTimeout(nextImage, 10000);