Skip to content
Snippets Groups Projects
Unverified Commit 447169b6 authored by Swapnil Bankar's avatar Swapnil Bankar Committed by GitHub
Browse files

fix: Emoji don't work after text in contiunous (#28216)

parent f6a8e157
No related branches found
No related tags found
No related merge requests found
......@@ -155,7 +155,7 @@ const MessageBox = ({
return;
}
EmojiPicker.open(e.currentTarget, (emoji: string) => chat?.composer?.insertText(`:${emoji}: `));
EmojiPicker.open(e.currentTarget, (emoji: string) => chat?.composer?.insertText(` :${emoji}: `));
});
const handleSendMessage = useMutableCallback(() => {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment