From 25d74d098d0bf50405b37c324ac0c928dc3db89a Mon Sep 17 00:00:00 2001 From: caadiq Date: Thu, 22 Jan 2026 21:15:32 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EC=9D=BC=EC=A0=95=20=ED=8F=BC=20?= =?UTF-8?q?=EA=B5=AC=EC=A1=B0=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - CategorySelector를 components/pc/admin/schedule/로 이동 - YouTube 수정 라우트 수정: /admin/schedule/:id/edit/youtube Co-Authored-By: Claude Opus 4.5 --- frontend-temp/src/App.jsx | 2 +- .../pc/admin/schedule}/CategorySelector.jsx | 0 frontend-temp/src/components/pc/admin/schedule/index.js | 1 + frontend-temp/src/pages/pc/admin/schedules/form/index.jsx | 2 +- 4 files changed, 3 insertions(+), 2 deletions(-) rename frontend-temp/src/{pages/pc/admin/schedules/form/components => components/pc/admin/schedule}/CategorySelector.jsx (100%) create mode 100644 frontend-temp/src/components/pc/admin/schedule/index.js diff --git a/frontend-temp/src/App.jsx b/frontend-temp/src/App.jsx index 576e22f..98b9b9e 100644 --- a/frontend-temp/src/App.jsx +++ b/frontend-temp/src/App.jsx @@ -88,7 +88,7 @@ function App() { } /> } /> } /> - } /> + } /> } /> } /> } /> diff --git a/frontend-temp/src/pages/pc/admin/schedules/form/components/CategorySelector.jsx b/frontend-temp/src/components/pc/admin/schedule/CategorySelector.jsx similarity index 100% rename from frontend-temp/src/pages/pc/admin/schedules/form/components/CategorySelector.jsx rename to frontend-temp/src/components/pc/admin/schedule/CategorySelector.jsx diff --git a/frontend-temp/src/components/pc/admin/schedule/index.js b/frontend-temp/src/components/pc/admin/schedule/index.js new file mode 100644 index 0000000..8c7cfe7 --- /dev/null +++ b/frontend-temp/src/components/pc/admin/schedule/index.js @@ -0,0 +1 @@ +export { default as CategorySelector } from './CategorySelector'; diff --git a/frontend-temp/src/pages/pc/admin/schedules/form/index.jsx b/frontend-temp/src/pages/pc/admin/schedules/form/index.jsx index 31e72d9..a8ca984 100644 --- a/frontend-temp/src/pages/pc/admin/schedules/form/index.jsx +++ b/frontend-temp/src/pages/pc/admin/schedules/form/index.jsx @@ -5,7 +5,7 @@ import { Home, ChevronRight } from "lucide-react"; import AdminLayout from "@/components/pc/admin/Layout"; import { useAdminAuth } from "@/hooks/pc/admin"; import * as categoriesApi from "@/api/pc/admin/categories"; -import CategorySelector from "./components/CategorySelector"; +import CategorySelector from "@/components/pc/admin/schedule/CategorySelector"; import YouTubeForm from "./YouTubeForm"; import XForm from "./XForm";