From 740318da791c98ed450e2c71f79ae1d41349b05c Mon Sep 17 00:00:00 2001 From: manNomi Date: Tue, 30 Jun 2026 14:23:09 +0900 Subject: [PATCH 1/2] =?UTF-8?q?fix:=20=EB=A9=98=ED=86=A0=20=EC=B1=84?= =?UTF-8?q?=EB=84=90=20=EB=A7=81=ED=81=AC=20=ED=81=B4=EB=A6=AD=20=EC=98=81?= =?UTF-8?q?=EC=97=AD=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../web/src/app/mentor/[id]/_ui/MentorDetialContent/index.tsx | 4 +++- apps/web/src/components/mentor/MentorCard/index.tsx | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/apps/web/src/app/mentor/[id]/_ui/MentorDetialContent/index.tsx b/apps/web/src/app/mentor/[id]/_ui/MentorDetialContent/index.tsx index 10065e32f..106dcbc1d 100644 --- a/apps/web/src/app/mentor/[id]/_ui/MentorDetialContent/index.tsx +++ b/apps/web/src/app/mentor/[id]/_ui/MentorDetialContent/index.tsx @@ -91,7 +91,9 @@ const MentorDetialContent = ({ mentorId }: MentorDetailContentProps) => { href={channel.url} target="_blank" key={idx} - className={`h-[40px] ${channels.length === 1 ? "w-full" : channels.length === 3 && idx === 2 ? "col-span-2" : ""}`} + className={clsx("block h-10 w-full", { + "col-span-2": channels.length === 3 && idx === 2, + })} > diff --git a/apps/web/src/components/mentor/MentorCard/index.tsx b/apps/web/src/components/mentor/MentorCard/index.tsx index d898ce188..505963ef0 100644 --- a/apps/web/src/components/mentor/MentorCard/index.tsx +++ b/apps/web/src/components/mentor/MentorCard/index.tsx @@ -97,7 +97,9 @@ const MentorCard = ({ mentor, observeRef, isMine = false }: MentorCardProps) => {channels?.map((channel, idx) => ( Date: Tue, 30 Jun 2026 15:06:20 +0900 Subject: [PATCH 2/2] =?UTF-8?q?fix:=20=EB=A7=88=EC=9D=B4=20=ED=94=84?= =?UTF-8?q?=EB=A1=9C=ED=95=84=20=EB=B3=80=EA=B2=BD=20=EB=A7=81=ED=81=AC=20?= =?UTF-8?q?=ED=81=B4=EB=A6=AD=20=EC=98=81=EC=97=AD=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../[id]/_ui/MentorDetialContent/index.tsx | 4 +--- .../src/app/my/_ui/MyProfileContent/index.tsx | 18 ++++++++++++------ .../src/components/mentor/MentorCard/index.tsx | 4 +--- 3 files changed, 14 insertions(+), 12 deletions(-) diff --git a/apps/web/src/app/mentor/[id]/_ui/MentorDetialContent/index.tsx b/apps/web/src/app/mentor/[id]/_ui/MentorDetialContent/index.tsx index 106dcbc1d..10065e32f 100644 --- a/apps/web/src/app/mentor/[id]/_ui/MentorDetialContent/index.tsx +++ b/apps/web/src/app/mentor/[id]/_ui/MentorDetialContent/index.tsx @@ -91,9 +91,7 @@ const MentorDetialContent = ({ mentorId }: MentorDetailContentProps) => { href={channel.url} target="_blank" key={idx} - className={clsx("block h-10 w-full", { - "col-span-2": channels.length === 3 && idx === 2, - })} + className={`h-[40px] ${channels.length === 1 ? "w-full" : channels.length === 3 && idx === 2 ? "col-span-2" : ""}`} > diff --git a/apps/web/src/app/my/_ui/MyProfileContent/index.tsx b/apps/web/src/app/my/_ui/MyProfileContent/index.tsx index bae8183e7..0f7df1128 100644 --- a/apps/web/src/app/my/_ui/MyProfileContent/index.tsx +++ b/apps/web/src/app/my/_ui/MyProfileContent/index.tsx @@ -117,14 +117,20 @@ const MyProfileContent = () => { {viewAsMentor ? ( -
- 프로필 변경 -
+ + 프로필 변경 + ) : (
-
- 프로필 변경 -
+ + 프로필 변경 + {channels?.map((channel, idx) => (