Skip to content

Commit

Permalink
display user uuid
Browse files Browse the repository at this point in the history
  • Loading branch information
BlueHorn07 committed Aug 18, 2024
1 parent 4fcc4b7 commit c72918e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
6 changes: 6 additions & 0 deletions components/user/user.update.modal.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,12 @@ const UserUpdateModal = ({ user, trigger }) => {
<Modal.Header>유저 정보 수정</Modal.Header>
<Modal.Content>
<Form>
<Form.Input
label={'UUID'}
value={user.uuid}
onChange={(e) => e.preventDefault()}
onKeyDown={(e) => e.preventDefault()}
/>
<Form.Input
required
label={'email'}
Expand Down
1 change: 0 additions & 1 deletion pages/place/reservation/create.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ const PlaceReservationCreatePage = ({ placeList }) => {

const [placeInfo, setPlaceInfo] = useState(null);
const [userInfo, setUserInfo] = useState(null);
console.log(placeInfo);

const [phone, setPhone] = useState('');
const [title, setTitle] = useState('');
Expand Down

0 comments on commit c72918e

Please sign in to comment.