I can't seem to figure out how to disable the EmojiPicker on my GetStream React app. I've read this documentation about how to create a custom EmojiPicker, but I can't seem to figure out how to disable the element entirely: https://getstream.io/chat/docs/sdk/react/guides/customization/emoji_picker/. Any guidance would be greatly appreciated, thanks!
How do I disable the emoji picker in the message input box in get stream?
113 views Asked by Zealand At
1
As stated on this page, the important part is to provide a
CustomInput
(which can be named differently) to theChannel
'sInput
parameter.Creating a custom input (taken from the docs, but omitting the
EmojiPicker
) can be done like this:This can then be input into the app tree like this:
The place where this customization is described is here.