From 744607a5cc5fd3b64b86c3ff999bafb93468593e Mon Sep 17 00:00:00 2001 From: Jaya Allamsetty <54324652+jallamsetty1@users.noreply.github.com> Date: Mon, 18 Apr 2022 10:34:46 -0400 Subject: [PATCH] fix(stageFilmstrip) Disable stage filmstrip by default. --- react/features/filmstrip/functions.web.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/react/features/filmstrip/functions.web.js b/react/features/filmstrip/functions.web.js index f5c9dabc0..8a831a921 100644 --- a/react/features/filmstrip/functions.web.js +++ b/react/features/filmstrip/functions.web.js @@ -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; }