From 607457790df5a04b6d8e35f3a09a006532c37b4c Mon Sep 17 00:00:00 2001 From: caadiq Date: Fri, 23 Jan 2026 13:04:01 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EC=96=B4=EB=93=9C=EB=AF=BC=20=ED=95=98?= =?UTF-8?q?=EC=9C=84=20=ED=8E=98=EC=9D=B4=EC=A7=80=20=EC=8A=A4=ED=81=AC?= =?UTF-8?q?=EB=A1=A4=20=EB=AC=B8=EC=A0=9C=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 일정 목록 페이지(/admin/schedule)만 내부 스크롤 처리하도록 변경하여 봇 관리, 사전 관리, 일정 추가 등 하위 페이지에서 스크롤이 정상 작동하도록 수정 Co-Authored-By: Claude Opus 4.5 --- frontend/src/components/pc/admin/layout/Layout.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/pc/admin/layout/Layout.jsx b/frontend/src/components/pc/admin/layout/Layout.jsx index 8a3fe64..1ca9ccd 100644 --- a/frontend/src/components/pc/admin/layout/Layout.jsx +++ b/frontend/src/components/pc/admin/layout/Layout.jsx @@ -9,8 +9,8 @@ import Header from './Header'; function AdminLayout({ user, children }) { const location = useLocation(); - // 일정 관리 페이지는 내부 스크롤 처리 - const isSchedulePage = location.pathname.includes('/admin/schedule'); + // 일정 목록 페이지만 내부 스크롤 처리 (하위 페이지는 레이아웃 스크롤 사용) + const isSchedulePage = location.pathname === '/admin/schedule'; return (