From 2e46d1cf71161e63fc35689ddcc32377b37cdba2 Mon Sep 17 00:00:00 2001 From: caadiq Date: Sun, 11 Jan 2026 12:13:59 +0900 Subject: [PATCH] =?UTF-8?q?AdminSchedule=EC=97=90=EB=8F=84=20AdminLayout?= =?UTF-8?q?=20=EC=A0=81=EC=9A=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - AdminHeader를 AdminLayout으로 교체 - 내부 레이아웃을 h-full flex flex-col overflow-hidden으로 조정 - 모든 Admin 페이지가 통일된 레이아웃 구조 사용 --- frontend/src/pages/pc/admin/AdminSchedule.jsx | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) 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() {
- - + + ); }