diff --git a/react/features/base/flags/constants.js b/react/features/base/flags/constants.js index 09cbdd243..104b6d303 100644 --- a/react/features/base/flags/constants.js +++ b/react/features/base/flags/constants.js @@ -154,6 +154,12 @@ export const PIP_ENABLED = 'pip.enabled'; */ export const RAISE_HAND_ENABLED = 'raise-hand.enabled'; +/** + * Flag indicating if the reactions feature should be enabled. + * Default: enabled (true). + */ +export const REACTIONS_ENABLED = 'reactions.enabled'; + /** * Flag indicating if recording should be enabled. * Default: auto-detected. @@ -220,9 +226,3 @@ export const VIDEO_SHARE_BUTTON_ENABLED = 'video-share.enabled'; * Default: disabled (false). */ export const WELCOME_PAGE_ENABLED = 'welcomepage.enabled'; - -/** - * Flag indicating if the reactions feature should be enabled. - * Default: disabled (false). - */ -export const REACTIONS_ENABLED = 'reactions.enabled'; diff --git a/react/features/toolbox/components/native/OverflowMenu.js b/react/features/toolbox/components/native/OverflowMenu.js index 7dde4b88c..713a019ad 100644 --- a/react/features/toolbox/components/native/OverflowMenu.js +++ b/react/features/toolbox/components/native/OverflowMenu.js @@ -205,7 +205,7 @@ function _mapStateToProps(state) { _bottomSheetStyles: ColorSchemeRegistry.get(state, 'BottomSheet'), _isOpen: isDialogOpen(state, OverflowMenu_), _width: state['features/base/responsive-ui'].clientWidth, - _reactionsEnabled: getFeatureFlag(state, REACTIONS_ENABLED, false) + _reactionsEnabled: getFeatureFlag(state, REACTIONS_ENABLED, true) }; }