fix(chore): Don't show react "unique key" warning

This commit is contained in:
Vlad Piersec 2021-09-30 09:39:14 +03:00 committed by vp8x8
parent d66f23ca4a
commit cfde918a30
1 changed files with 2 additions and 4 deletions

View File

@ -161,10 +161,8 @@ class ConferenceInfo extends Component<Props> {
render() {
return (
<div className = 'details-container' >
{ [
this._renderAlwaysVisible(),
this._renderAutoHide()
] }
{ this._renderAlwaysVisible() }
{ this._renderAutoHide() }
</div>
);
}