mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-27 17:45:52 -05:00
show usernames in confirmation step
This commit is contained in:
parent
1b455d6fbd
commit
43ee5896b5
1 changed files with 2 additions and 2 deletions
|
@ -28,14 +28,14 @@ const TransferOwnershipConfirmation = ({
|
|||
<TransferOwnershipTile
|
||||
key={userId}
|
||||
id={userId}
|
||||
username={'current owner username'}
|
||||
username={items.find(item => item.id===userId).username}
|
||||
isCreator={false}
|
||||
/>
|
||||
<span>➡️</span>
|
||||
<TransferOwnershipTile
|
||||
key={selectedId}
|
||||
id={selectedId}
|
||||
username={'new owner username'}
|
||||
username={items.find(item => item.id===selectedId).username}
|
||||
isCreator={true}
|
||||
/>
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue