fix(stageFilmstrip) Disable stage filmstrip by default.

This commit is contained in:
Jaya Allamsetty 2022-04-18 10:34:46 -04:00 committed by Дамян Минков
parent 8f641b7bb1
commit 744607a5cc
1 changed files with 1 additions and 1 deletions

View File

@ -713,5 +713,5 @@ export function shouldDisplayStageFilmstrip(state, minParticipantCount = 2) {
export function isStageFilmstripEnabled(state) {
const { filmstrip } = state['features/base/config'];
return !filmstrip?.disableStageFilmstrip && interfaceConfig.VERTICAL_FILMSTRIP;
return !(filmstrip?.disableStageFilmstrip ?? true) && interfaceConfig.VERTICAL_FILMSTRIP;
}