Skip to content

Commit

Permalink
Merge commit '35580ef736d6ab2246aaecbbe6ae5ac59aabefa1' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
alreadynyeong committed Aug 22, 2023
2 parents 4d9c84e + 35580ef commit f3979d6
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/component/layout/Nav/SideMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,16 @@ const SideMenu: React.FC<SideMenuProps> = ({ onClose }) => {
<div style={FONT.H7}>{route.text}</div>
</MenuLink>
))}
{token && (
<MenuLink
onClick={() => {
navigate('/user/edit');
onClose();
}}
>
<div style={FONT.H7}>회원정보 수정</div>
</MenuLink>
)}
</div>
</Menu>
<Background
Expand Down

0 comments on commit f3979d6

Please sign in to comment.