There was an error while loading. Please reload this page.
1 parent 6e5b3c9 commit 7c1ce5eCopy full SHA for 7c1ce5e
1 file changed
src/pages/home/home.jsx
@@ -38,7 +38,7 @@ const Home = () => {
38
useEffect(() => {
39
const interval = setInterval(() => {
40
goToNextPage();
41
- }, 7000); // 7초마다
+ }, 4000); // 7초마다
42
43
return () => clearInterval(interval); // 컴포넌트 언마운트 시 정리
44
}, [currentPage]); // currentPage가 바뀔 때마다 타이머 초기화 (선택 사항)
0 commit comments