Skip to content

Commit

Permalink
Merge pull request #456 from depromeet/feat/setting
Browse files Browse the repository at this point in the history
�feat: 탈퇴 시 뒤로가기 버튼 제거 & 목표 미터 2000, 4000 추가
  • Loading branch information
summermong authored Nov 17, 2024
2 parents 00b5069 + 15edfdb commit e466296
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 5 deletions.
12 changes: 7 additions & 5 deletions app/delete-account/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,13 @@ export default function Page() {

return (
<div>
<HeaderBar>
<HeaderBar.LeftContent>
<BackButton />
</HeaderBar.LeftContent>
</HeaderBar>
{step !== 3 && (
<HeaderBar>
<HeaderBar.LeftContent>
<BackButton />
</HeaderBar.LeftContent>
</HeaderBar>
)}
{getStepComponent(step)}
</div>
);
Expand Down
6 changes: 6 additions & 0 deletions features/setting/components/organisms/setting-calendar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -131,9 +131,15 @@ export function SettingCalendar({
<ListItem text="1,000m" onClick={() => handleListItemClick(1000)}>
<Radio value={1000} />
</ListItem>
<ListItem text="2,000m" onClick={() => handleListItemClick(2000)}>
<Radio value={2000} />
</ListItem>
<ListItem text="3,000m" onClick={() => handleListItemClick(3000)}>
<Radio value={3000} />
</ListItem>
<ListItem text="4,000m" onClick={() => handleListItemClick(4000)}>
<Radio value={4000} />
</ListItem>
<ListItem text="5,000m" onClick={() => handleListItemClick(5000)}>
<Radio value={5000} />
</ListItem>
Expand Down

0 comments on commit e466296

Please sign in to comment.