@devchitchat/chat 4.1.0 → 4.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devchitchat/chat",
3
- "version": "4.1.0",
3
+ "version": "4.1.1",
4
4
  "description": "A small chat app. p2p video and screenshare.",
5
5
  "scripts": {
6
6
  "dev": "bun --watch index.js",
@@ -839,7 +839,6 @@ export default function CallIsland(root) {
839
839
  picker.onEmojiPickHandler = (e) => {
840
840
  const { emoji } = e.detail
841
841
  closeEmojiPicker()
842
- closeReactionContextMenu()
843
842
  ws.send({ t: 'reaction.add', body: { msg_id: msgId, channel_id: channelId, emoji } })
844
843
  }
845
844
  picker.removeEventListener('emoji:pick', picker._boundEmojiPick)
@@ -887,7 +886,6 @@ export default function CallIsland(root) {
887
886
 
888
887
  document.addEventListener('keydown', e => {
889
888
  if (e.key === 'Escape') {
890
- closeReactionContextMenu()
891
889
  closeEmojiPicker()
892
890
  }
893
891
  })