diff --git a/react/features/toolbox/components/native/OverflowMenu.js b/react/features/toolbox/components/native/OverflowMenu.js index f29354c56..01fd32b47 100644 --- a/react/features/toolbox/components/native/OverflowMenu.js +++ b/react/features/toolbox/components/native/OverflowMenu.js @@ -56,23 +56,19 @@ class OverflowMenu extends Component { * @returns {ReactElement} */ render() { + const buttonProps = { + afterClick: this._onCancel, + showLabel: true, + styles: overflowMenuItemStyles + }; + return ( - - - - - + + + + + ); }