You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In Mobile,
Touch from contextMenus were getting leaked to MessageBody
To avoid this, move context menu outside of MessageBody's JSX
```
<div longPress>
<Message />
<Menu/>
</div>
```
to
```
<>
<div longPress>
<Message />
</div>
{
<Menu/>
}
</>
```
Bonus * OGMessage should fallback to text-messages
Fixes: https://sendbird.atlassian.net/browse/UIKIT-4029
0 commit comments