added key to participant row map

This commit is contained in:
Jon 2021-06-16 14:51:19 +01:00
parent 8076fe69b0
commit 33fcef847c
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ export const WaitingRoomModal = ({ onClose }) => {
]} ]}
> >
{waitingParticipants.map((p) => ( {waitingParticipants.map((p) => (
<WaitingParticipantRow participant={p} /> <WaitingParticipantRow participant={p} key={p.id} />
))} ))}
</Modal> </Modal>
); );