From 3c40eb9f08cee449f14556f31532b00aea82557e Mon Sep 17 00:00:00 2001 From: Adam French Date: Fri, 20 Feb 2026 16:28:16 +0000 Subject: [PATCH] I should seriously look at what I'm commiting before I commit it.... >_< dw I won't do this in professional context --- nginx/vue/src/views/home/Collage.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nginx/vue/src/views/home/Collage.vue b/nginx/vue/src/views/home/Collage.vue index e72d878..5ae09f4 100644 --- a/nginx/vue/src/views/home/Collage.vue +++ b/nginx/vue/src/views/home/Collage.vue @@ -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);