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