From b37ca360a53100ebed77c53e75c03820d8eaeb9f Mon Sep 17 00:00:00 2001 From: caadiq Date: Fri, 9 Jan 2026 23:25:48 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20AdminAlbumForm=20=ED=8E=98=EC=9D=B4?= =?UTF-8?q?=EC=A7=80=20=EC=A0=84=ED=99=98=20=EC=95=A0=EB=8B=88=EB=A9=94?= =?UTF-8?q?=EC=9D=B4=EC=85=98=20=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - motion.div를 일반 div로 변경 - pageVariants 변수 제거 - 다른 Admin 페이지와 일관성 유지 - 페이지 전환 시 헤더 깜빡임 해결 --- frontend/src/pages/pc/admin/AdminAlbumForm.jsx | 17 ++--------------- 1 file changed, 2 insertions(+), 15 deletions(-) diff --git a/frontend/src/pages/pc/admin/AdminAlbumForm.jsx b/frontend/src/pages/pc/admin/AdminAlbumForm.jsx index d1ea347..fa564b4 100644 --- a/frontend/src/pages/pc/admin/AdminAlbumForm.jsx +++ b/frontend/src/pages/pc/admin/AdminAlbumForm.jsx @@ -259,21 +259,8 @@ function AdminAlbumForm() { const albumTypes = ['정규', '미니', '싱글']; - const pageVariants = { - initial: { opacity: 0, y: 20 }, - animate: { opacity: 1, y: 0 }, - exit: { opacity: 0, y: -20 } - }; - return ( - +
{/* Toast */} setToast(null)} /> @@ -673,7 +660,7 @@ function AdminAlbumForm() { )} - +
); }