From 7192379eb03d13e8b493397efb801286e5963af0 Mon Sep 17 00:00:00 2001 From: caadiq Date: Sat, 10 Jan 2026 09:20:27 +0900 Subject: [PATCH] =?UTF-8?q?chore:=20=EC=9D=BC=EC=A0=95=20=EA=B2=80?= =?UTF-8?q?=EC=83=89=20=ED=8E=98=EC=9D=B4=EC=A7=95=20limit=EC=9D=84=2020?= =?UTF-8?q?=EA=B0=9C=EB=A1=9C=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Schedule.jsx, AdminSchedule.jsx SEARCH_LIMIT 5 -> 20 --- frontend/src/pages/pc/admin/AdminSchedule.jsx | 2 +- frontend/src/pages/pc/public/Schedule.jsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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({