diff --git a/src/pages/myPage/MyPage.tsx b/src/pages/myPage/MyPage.tsx index 8b95bb85..467edd4f 100644 --- a/src/pages/myPage/MyPage.tsx +++ b/src/pages/myPage/MyPage.tsx @@ -14,15 +14,36 @@ interface MemberProfile { name: string; gender: 'MALE' | 'FEMALE'; generation: number; - major: 'FRONTEND' | 'BACKEND' | 'ANDROID' | 'IOS' | 'DESIGN'; + major: + | 'FRONTEND' + | 'BACKEND' + | 'ANDROID' + | 'IOS' + | 'MOBILE_ROBOTICS' + | 'DESIGN' + | 'DEVOPS' + | 'AI' + | 'IT_NETWORK' + | 'FLUTTER' + | 'CYBER_SECURITY' + | 'GAME_DEVELOP' + | 'CLOUD_COMPUTING'; } const majorToInterestMap: Record = { FRONTEND: 'FE', BACKEND: 'BE', - ANDROID: 'AOS', + ANDROID: 'Android', IOS: 'iOS', + MOBILE_ROBOTICS: 'Mobile Robotics', DESIGN: 'Design', + DEVOPS: 'DevOps', + AI: 'AI', + IT_NETWORK: 'IT Network', + FLUTTER: 'Flutter', + CYBER_SECURITY: 'Cyber Security', + GAME_DEVELOP: 'Game Development', + CLOUD_COMPUTING: 'Cloud Computing', }; export default function MyPage() { diff --git a/src/pages/signup/SignupPage.tsx b/src/pages/signup/SignupPage.tsx index 7c180db3..c36934e7 100644 --- a/src/pages/signup/SignupPage.tsx +++ b/src/pages/signup/SignupPage.tsx @@ -75,7 +75,7 @@ export default function SignupPage() { { id: 'IT_NETWORK', label: 'IT Network' }, { id: 'FLUTTER', label: 'Flutter' }, { id: 'CYBER_SECURITY', label: 'Cyber Security' }, - { id: 'GAME_DEVELOPMENT', label: 'Game Development' }, + { id: 'GAME_DEVELOP', label: 'Game Development' }, { id: 'CLOUD_COMPUTING', label: 'Cloud Computing' }, ];