diff --git a/web/apps/cast/src/pages/slideshow.tsx b/web/apps/cast/src/pages/slideshow.tsx index b860523ab92fee37a6f8ffbe1d5066b91cfacfd1..11b34baf758a1570b433ec00123d1cffd380a9e6 100644 --- a/web/apps/cast/src/pages/slideshow.tsx +++ b/web/apps/cast/src/pages/slideshow.tsx @@ -103,13 +103,26 @@ export default function Slideshow() { const showNextSlide = async () => { try { + console.log("showNextSlide"); const currentIndex = collectionFiles.findIndex( (file) => file.id === currentFileId, ); + console.log( + "showNextSlide-index", + currentIndex, + collectionFiles.length, + ); + const nextIndex = (currentIndex + 1) % collectionFiles.length; const nextNextIndex = (nextIndex + 1) % collectionFiles.length; + console.log( + "showNextSlide-nextIndex and nextNextIndex", + nextIndex, + nextNextIndex, + ); + const nextFile = collectionFiles[nextIndex]; const nextNextFile = collectionFiles[nextNextIndex];