chore: 일정 검색 페이징 limit을 20개로 변경

- Schedule.jsx, AdminSchedule.jsx SEARCH_LIMIT 5 -> 20
This commit is contained in:
caadiq 2026-01-10 09:20:27 +09:00
parent 9986b918d8
commit 7192379eb0
2 changed files with 2 additions and 2 deletions

View file

@ -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({

View file

@ -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({