diff --git a/frontend/src/pages/pc/admin/schedules/edit/EventEditForm.jsx b/frontend/src/pages/pc/admin/schedules/edit/EventEditForm.jsx index 046bad4..594f838 100644 --- a/frontend/src/pages/pc/admin/schedules/edit/EventEditForm.jsx +++ b/frontend/src/pages/pc/admin/schedules/edit/EventEditForm.jsx @@ -17,7 +17,7 @@ import { getMembers } from "@/api/public/members"; import { getEvent, updateEvent } from "@/api/admin/events"; const SUBTYPES = [ - { value: "university", label: "학교 축제" }, + { value: "university", label: "대학 축제" }, ]; function EventEditForm() { diff --git a/frontend/src/pages/pc/admin/schedules/form/event/index.jsx b/frontend/src/pages/pc/admin/schedules/form/event/index.jsx index 841a979..198964f 100644 --- a/frontend/src/pages/pc/admin/schedules/form/event/index.jsx +++ b/frontend/src/pages/pc/admin/schedules/form/event/index.jsx @@ -15,9 +15,9 @@ import { useAdminAuth } from "@/hooks/pc/admin"; import { getMembers } from "@/api/public/members"; import { createEvent } from "@/api/admin/events"; -// 세부 타입 목록 (현재는 "학교"만) +// 세부 타입 목록 (현재는 "대학"만) const SUBTYPES = [ - { value: "university", label: "학교 축제" }, + { value: "university", label: "대학 축제" }, ]; function EventForm() {