Use new managed prop for emoji composer menu

pull/21833/head
J. Ryan Stinnett 2021-04-26 15:23:55 +01:00
parent bf43144f6e
commit 809454e66a
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ const EmojiButton = ({addEmoji}) => {
if (menuDisplayed) {
const buttonRect = button.current.getBoundingClientRect();
const EmojiPicker = sdk.getComponent('emojipicker.EmojiPicker');
contextMenu = <ContextMenu {...aboveLeftOf(buttonRect)} onFinished={closeMenu}>
contextMenu = <ContextMenu {...aboveLeftOf(buttonRect)} onFinished={closeMenu} managed={false}>
<EmojiPicker onChoose={addEmoji} showQuickReactions={true} />
</ContextMenu>;
}