diff options
Diffstat (limited to 'client')
-rw-r--r-- | client/src/components/Home.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/components/Home.tsx b/client/src/components/Home.tsx index b6ecc47..f735195 100644 --- a/client/src/components/Home.tsx +++ b/client/src/components/Home.tsx @@ -17,7 +17,7 @@ function Home() { setIndex((prevIndex) => prevIndex === photos.length - 1 ? 0 : prevIndex + 1 ); - }, 5000); + }, 3000); return () => clearInterval(interval); }, [photos.length]); |