diff --git a/src/ui/app/business/components/elevateSection/index.tsx b/src/ui/app/business/components/elevateSection/index.tsx index bbda1021..8f5cf21e 100644 --- a/src/ui/app/business/components/elevateSection/index.tsx +++ b/src/ui/app/business/components/elevateSection/index.tsx @@ -27,7 +27,7 @@ const FirstTabComponent = () => { useEffect(() => { const interval = setInterval(() => { setCurrentIndex((prevIndex) => (prevIndex + 1) % images.length); - }, 2000); + }, 5000); // Clean up the interval on component unmount return () => clearInterval(interval); @@ -160,7 +160,7 @@ const ThirdTabComponent = () => {