fix(event): 세부 타입 라벨 '학교 축제' → '대학 축제'
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
parent
bcc8555193
commit
2e459995c3
2 changed files with 3 additions and 3 deletions
|
|
@ -17,7 +17,7 @@ import { getMembers } from "@/api/public/members";
|
||||||
import { getEvent, updateEvent } from "@/api/admin/events";
|
import { getEvent, updateEvent } from "@/api/admin/events";
|
||||||
|
|
||||||
const SUBTYPES = [
|
const SUBTYPES = [
|
||||||
{ value: "university", label: "학교 축제" },
|
{ value: "university", label: "대학 축제" },
|
||||||
];
|
];
|
||||||
|
|
||||||
function EventEditForm() {
|
function EventEditForm() {
|
||||||
|
|
|
||||||
|
|
@ -15,9 +15,9 @@ import { useAdminAuth } from "@/hooks/pc/admin";
|
||||||
import { getMembers } from "@/api/public/members";
|
import { getMembers } from "@/api/public/members";
|
||||||
import { createEvent } from "@/api/admin/events";
|
import { createEvent } from "@/api/admin/events";
|
||||||
|
|
||||||
// 세부 타입 목록 (현재는 "학교"만)
|
// 세부 타입 목록 (현재는 "대학"만)
|
||||||
const SUBTYPES = [
|
const SUBTYPES = [
|
||||||
{ value: "university", label: "학교 축제" },
|
{ value: "university", label: "대학 축제" },
|
||||||
];
|
];
|
||||||
|
|
||||||
function EventForm() {
|
function EventForm() {
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue