From 4bbe29e18e8cdba4d5f61bc1072954ce9cac734f Mon Sep 17 00:00:00 2001 From: dohyeons Date: Mon, 27 Oct 2025 13:20:49 +0900 Subject: [PATCH] =?UTF-8?q?=EC=96=B4=EB=93=9C=EB=AF=BC=20=EA=B3=84?= =?UTF-8?q?=EC=A0=95=20=EC=8B=9D=EB=B3=84=20=EB=B0=A9=EB=B2=95=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/components/layout/AppLayout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/components/layout/AppLayout.tsx b/frontend/components/layout/AppLayout.tsx index 903a91bb..cb38ed3c 100644 --- a/frontend/components/layout/AppLayout.tsx +++ b/frontend/components/layout/AppLayout.tsx @@ -416,7 +416,7 @@ function AppLayoutInner({ children }: AppLayoutProps) { } flex h-[calc(100vh-3.5rem)] w-72 max-w-72 min-w-72 flex-col border-r border-slate-200 bg-white transition-transform duration-300`} > {/* 사이드바 상단 - Admin/User 모드 전환 버튼 (관리자만) */} - {(user as ExtendedUserInfo)?.userType === "admin" && ( + {(user as ExtendedUserInfo)?.userType?.toLowerCase().includes("admin") && (