From cfde918a30e59d2cd06ff80c2c2289479fc63efe Mon Sep 17 00:00:00 2001 From: Vlad Piersec Date: Thu, 30 Sep 2021 09:39:14 +0300 Subject: [PATCH] fix(chore): Don't show react "unique key" warning --- react/features/conference/components/web/ConferenceInfo.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/react/features/conference/components/web/ConferenceInfo.js b/react/features/conference/components/web/ConferenceInfo.js index 2b5b6ea8f..8bf200346 100644 --- a/react/features/conference/components/web/ConferenceInfo.js +++ b/react/features/conference/components/web/ConferenceInfo.js @@ -161,10 +161,8 @@ class ConferenceInfo extends Component { render() { return (
- { [ - this._renderAlwaysVisible(), - this._renderAutoHide() - ] } + { this._renderAlwaysVisible() } + { this._renderAutoHide() }
); }