Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: 자기소개 수정시 릴레이 질문만 노출되도록 수정 #146

Merged
merged 1 commit into from
Aug 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ export const MyprofileContainer = () => {
title="마이 프로필"
rightDecor={
<TextButton
css={{ height: '100%' }}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👞 모바일에서 터치가 잘 안 되어 높이를 넓게 주어 터치영역 확보

variant="normal"
color={colors.primary500}
onClick={isModifyPage ? handleModify : handleMoveToModifyPage}
Expand All @@ -43,7 +44,7 @@ export const MyprofileContainer = () => {

<section css={segmentedSectionCss} style={sectionStyle}>
<SegmentedControl value={tab} onValueChange={handleTab} css={segmentedCss}>
<SegmentedControl.Item value="about-me">자기소개</SegmentedControl.Item>
{!isModifyPage && <SegmentedControl.Item value="about-me">자기소개</SegmentedControl.Item>}
<SegmentedControl.Item value="answered-questions">릴레이 질문</SegmentedControl.Item>
</SegmentedControl>
<div css={aboutMeSectionCss}>
Expand Down