diff --git a/frontend/src/pages/pc/admin/AdminSchedule.jsx b/frontend/src/pages/pc/admin/AdminSchedule.jsx index a0514d1..8ff7633 100644 --- a/frontend/src/pages/pc/admin/AdminSchedule.jsx +++ b/frontend/src/pages/pc/admin/AdminSchedule.jsx @@ -11,7 +11,7 @@ import { useInView } from 'react-intersection-observer'; import Toast from '../../../components/Toast'; import Tooltip from '../../../components/Tooltip'; -import AdminHeader from '../../../components/admin/AdminHeader'; +import AdminLayout from '../../../components/admin/AdminLayout'; import ConfirmDialog from '../../../components/admin/ConfirmDialog'; import useScheduleStore from '../../../stores/useScheduleStore'; import useToast from '../../../hooks/useToast'; @@ -576,7 +576,7 @@ function AdminSchedule() { }, [categories, categoryCounts]); return ( -
+ setToast(null)} /> {/* 삭제 확인 다이얼로그 */} @@ -597,11 +597,8 @@ function AdminSchedule() { loading={deleting} /> - {/* 헤더 */} - - - {/* 메인 콘텐츠 */} -
+ {/* 메인 콘텐츠 - 전체 높이 차지 */} +
{/* 브레드크럼 */}
@@ -1232,8 +1229,8 @@ function AdminSchedule() {
- - + + ); }