Skip to content

Commit

Permalink
feat: #58-내정보수정
Browse files Browse the repository at this point in the history
  • Loading branch information
SOTETERO committed Jun 2, 2024
1 parent 5bdec47 commit a7702de
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/components/MyPage/MyInfo/myInfo.js
Original file line number Diff line number Diff line change
Expand Up @@ -252,8 +252,8 @@ const MyInfo = ({ IsWithdrawal, innerRef }) => {
</Tag>
<Input
style={{ width: 162, marginRight: 20 }}
value={region}
onChange={(e) => handleChange(e.target.value, setRegion)}
value={school}
onChange={(e) => handleChange(e.target.value, setSchool)}
$isVisible={visible.step6}
/>

Expand All @@ -266,8 +266,8 @@ const MyInfo = ({ IsWithdrawal, innerRef }) => {
</Tag>
<Input
style={{ width: 162 }}
value={school}
onChange={(e) => handleChange(e.target.value, setSchool)}
value={region}
onChange={(e) => handleChange(e.target.value, setRegion)}
$isVisible={visible.step7}
/>
</div>
Expand Down Expand Up @@ -355,7 +355,7 @@ const MyInfo = ({ IsWithdrawal, innerRef }) => {
justifyContent: "flex-end",
}}
>
<BlueButton onClick={() => SaveUserData()} isVisible={visible.step11}>
<BlueButton onClick={() => SaveUserData()} $isVisible={visible.step11}>
저장
</BlueButton>
<CannelButton $isVisible={visible.step11}>취소</CannelButton>
Expand Down

0 comments on commit a7702de

Please sign in to comment.