From 912449c5d5051e6f7af6ea0f079e52bea48b65b3 Mon Sep 17 00:00:00 2001 From: Santtu Pajukanta Date: Fri, 27 Sep 2024 19:53:13 +0300 Subject: [PATCH] feat(PictureView): change slideshow time from 5s to 3s --- frontend/src/components/PictureView/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/PictureView/index.tsx b/frontend/src/components/PictureView/index.tsx index 544d1c5..a8ee3b5 100644 --- a/frontend/src/components/PictureView/index.tsx +++ b/frontend/src/components/PictureView/index.tsx @@ -126,7 +126,7 @@ function PictureView({ album, picture, fromAlbumView, history }: PictureViewProp const startSlideshow = React.useCallback(() => { setTimeout(() => { goTo('next', { slideshow: true })(); - }, 5000); + }, 3000); }, [goTo]); React.useEffect(() => {