Skip to content

Commit

Permalink
Merge pull request #32 from enpitut2023/AddExplanation
Browse files Browse the repository at this point in the history
プロフィール情報の修正に関する文言の追加
  • Loading branch information
Koshimu546 authored Jan 5, 2024
2 parents 38408e1 + 16a3719 commit 88c37b1
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/components/Meeting.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,14 @@ export const Meeting = (props) => {
<div>
<div>{meeting.name}</div>
<div>{meeting.url}</div>
<hr></hr>
<Form meetingId={meetingId} addUserToList={addUserToList} />
<h5>
一度登録したプロフィール情報は変更できません。
<br />
登録情報を修正したい場合は、 「ユーザを削除」をクリックし、
入力フォームから再度情報を登録してください。
</h5>
<div>
{Array.isArray(meeting.users) &&
meeting.users.map((data, index) => {
Expand All @@ -70,8 +78,6 @@ export const Meeting = (props) => {
);
})}
</div>
<hr></hr>
<Form meetingId={meetingId} addUserToList={addUserToList} />
</div>
);
};

0 comments on commit 88c37b1

Please sign in to comment.