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

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>
);
}