diff --git a/client/web/src/components/ChatBox/ChatInputBox/index.tsx b/client/web/src/components/ChatBox/ChatInputBox/index.tsx index dc8db19d..a1c4b86f 100644 --- a/client/web/src/components/ChatBox/ChatInputBox/index.tsx +++ b/client/web/src/components/ChatBox/ChatInputBox/index.tsx @@ -15,6 +15,7 @@ import { import { ChatInputEmotion } from './Emotion'; import _uniq from 'lodash/uniq'; import { ChatDropArea } from './ChatDropArea'; +import { Icon } from 'tailchat-design'; interface ChatInputBoxProps { onSendMsg: (msg: string, meta?: SendMessagePayloadMeta) => void; @@ -110,7 +111,16 @@ export const ChatInputBox: React.FC = React.memo((props) => {
- + + {message ? ( + handleSendMsg()} + /> + ) : ( + + )}