From 119e1e69a7c4183b9ea98905642b6d3238538719 Mon Sep 17 00:00:00 2001 From: moonkanghyeon Date: Mon, 29 Dec 2025 15:51:45 +0900 Subject: [PATCH 1/2] =?UTF-8?q?fix:=20=ED=9A=8C=EC=9B=90=20=ED=94=84?= =?UTF-8?q?=EB=A1=9C=ED=95=84=EC=9D=98=20=EC=A0=84=EA=B3=B5=20=EB=B0=8F=20?= =?UTF-8?q?=EA=B4=80=EC=8B=AC=EC=82=AC=20=EB=A7=A4=ED=95=91=20=EC=97=85?= =?UTF-8?q?=EB=8D=B0=EC=9D=B4=ED=8A=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/myPage/MyPage.tsx | 25 +++++++++++++++++++++++-- 1 file changed, 23 insertions(+), 2 deletions(-) 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() { From 292c179542abb72c07314c4a4e7247c72fe2e57a Mon Sep 17 00:00:00 2001 From: moonkanghyeon Date: Mon, 29 Dec 2025 15:51:55 +0900 Subject: [PATCH 2/2] =?UTF-8?q?fix:=20=EA=B2=8C=EC=9E=84=20=EA=B0=9C?= =?UTF-8?q?=EB=B0=9C=20=ED=95=AD=EB=AA=A9=EC=9D=98=20ID=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/signup/SignupPage.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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' }, ];