From 5add987711c1b0693bfbeb1421c81f76f3ebf74e Mon Sep 17 00:00:00 2001 From: Robert Pintilii Date: Tue, 29 Mar 2022 13:42:01 +0300 Subject: [PATCH] fix(rn) Fix native after stage filmstrip merge (#11247) --- react/features/filmstrip/functions.native.js | 9 +++++++++ 1 file changed, 9 insertions(+) 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; +}