We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d248f89 commit 2d0a8f2Copy full SHA for 2d0a8f2
src/App.js
@@ -192,8 +192,8 @@ class App extends Component {
192
if(peer.id === this.state.self_id)
193
return null;
194
return (
195
- <div>
196
- <ListItem button>
+ <div key={peer.id}>
+ <ListItem button >
197
<ListItemText primary={peer.name + ' [' + peer.user_agent + ']'} secondary={'id: ' + peer.id} />
198
<IconButton color="primary" onClick={() => this.handleInvitePeer(peer.id, 'audio')} className={classes.button} aria-label="Make a voice call.">
199
<CallIcon />
0 commit comments