diff --git a/frontend/src/pages/pc/admin/AdminSchedule.jsx b/frontend/src/pages/pc/admin/AdminSchedule.jsx index d9e4915..386f643 100644 --- a/frontend/src/pages/pc/admin/AdminSchedule.jsx +++ b/frontend/src/pages/pc/admin/AdminSchedule.jsx @@ -151,7 +151,7 @@ function AdminSchedule() { const [user, setUser] = useState(null); const { toast, setToast } = useToast(); const scrollContainerRef = useRef(null); - const SEARCH_LIMIT = 5; // 테스트용 5개 + const SEARCH_LIMIT = 20; // 페이지당 20개 // Intersection Observer for infinite scroll const { ref: loadMoreRef, inView } = useInView({ diff --git a/frontend/src/pages/pc/public/Schedule.jsx b/frontend/src/pages/pc/public/Schedule.jsx index d607cb2..a478ba3 100644 --- a/frontend/src/pages/pc/public/Schedule.jsx +++ b/frontend/src/pages/pc/public/Schedule.jsx @@ -41,7 +41,7 @@ function Schedule() { const [isSearchMode, setIsSearchMode] = useState(false); const [searchInput, setSearchInput] = useState(''); const [searchTerm, setSearchTerm] = useState(''); - const SEARCH_LIMIT = 5; // 테스트용 5개 + const SEARCH_LIMIT = 20; // 페이지당 20개 // Intersection Observer for infinite scroll const { ref: loadMoreRef, inView } = useInView({