added key to participant row map
This commit is contained in:
parent
8076fe69b0
commit
33fcef847c
|
|
@ -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>
|
||||||
);
|
);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue