Skip to content

Commit

Permalink
fix: 본인 프로필인 경우 마이로 이동
Browse files Browse the repository at this point in the history
  • Loading branch information
LeeJeongHooo committed Sep 13, 2024
1 parent b291bc8 commit 95edf9a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export const GatherMemberProfile = ({ meetingId, member }: GatherMemberProfilePr
padding: '12px 16px',
}}
>
<Link href={`${meetingId}/about/${meetingMemberId}`}>
<Link href={isMe ? '/home/me' : `${meetingId}/about/${meetingMemberId}`}>
<div css={{ alignItems: 'center', display: 'flex', flexDirection: 'column' }}>
<ProfileImage
imageUrl={profileImageFileUrl}
Expand Down

0 comments on commit 95edf9a

Please sign in to comment.