mirror of
https://github.com/status-im/wakuconnect-chat-sdk.git
synced 2025-02-05 16:53:43 +00:00
fix(react): do not submit empty message
This commit is contained in:
parent
e186ec7e79
commit
e338c67592
@ -34,6 +34,10 @@ export const ChatInput = (props: Props) => {
|
||||
}
|
||||
|
||||
const handleKeyDown = (event: React.KeyboardEvent<HTMLInputElement>) => {
|
||||
if (inputValue === '') {
|
||||
return
|
||||
}
|
||||
|
||||
if (event.key === 'Enter' && event.shiftKey === false) {
|
||||
onSubmit(inputValue)
|
||||
setInputValue('')
|
||||
|
Loading…
x
Reference in New Issue
Block a user