diff --git a/react/features/filmstrip/functions.native.js b/react/features/filmstrip/functions.native.js index 9c9c6ae45..586234cdd 100644 --- a/react/features/filmstrip/functions.native.js +++ b/react/features/filmstrip/functions.native.js @@ -102,3 +102,12 @@ export function isReorderingEnabled(state) { return enableThumbnailReordering; } +/** + * Whether the stage filmstrip is disabled or not. + * + * @param {Object} state - Redux state. + * @returns {boolean} + */ +export function isStageFilmstripEnabled() { + return false; +}