fix(RN, Toolbox): Show full participant thumbnails in tile view

This commit is contained in:
Vlad Piersec 2021-05-07 10:58:57 +03:00 committed by Saúl Ibarra Corretgé
parent 98078f9160
commit 9fd8491d04
1 changed files with 2 additions and 2 deletions

View File

@ -284,8 +284,7 @@ class Conference extends AbstractConference<Props, *> {
<LonelyMeetingExperience />
{ _shouldDisplayTileView ? undefined : <Filmstrip /> }
<Toolbox />
{ _shouldDisplayTileView || <><Filmstrip /><Toolbox /></> }
</View>
<SafeAreaView
@ -301,6 +300,7 @@ class Conference extends AbstractConference<Props, *> {
{ this._renderConferenceNotification() }
{ this._renderConferenceModals() }
{_shouldDisplayTileView && <Toolbox />}
</>
);
}