Fixed issue with cursor position in Composer, fixes emoji picker postioning

• Fixed:
- issue with cursor position in Composer, fixes emoji picker postioning
This commit is contained in:
mgabdev
2020-12-31 18:48:35 -05:00
parent 4174597a24
commit 3809700f17
4 changed files with 11 additions and 7 deletions

View File

@@ -670,10 +670,9 @@ export const changeComposeVisibility = (value) => ({
/**
*
*/
export const insertEmojiCompose = (emoji, needsSpace) => ({
export const insertEmojiCompose = (emoji) => ({
type: COMPOSE_EMOJI_INSERT,
emoji,
needsSpace,
})
/**