diff --git a/packages/uiweb/src/lib/components/chat/ChatViewComponent/ChatViewComponent.tsx b/packages/uiweb/src/lib/components/chat/ChatViewComponent/ChatViewComponent.tsx index 6678fa5d7..9cd16d4da 100644 --- a/packages/uiweb/src/lib/components/chat/ChatViewComponent/ChatViewComponent.tsx +++ b/packages/uiweb/src/lib/components/chat/ChatViewComponent/ChatViewComponent.tsx @@ -89,9 +89,9 @@ export const ChatViewComponent: React.FC = ( diff --git a/packages/uiweb/src/lib/components/chat/MessageInput/MessageInput.tsx b/packages/uiweb/src/lib/components/chat/MessageInput/MessageInput.tsx index d8feee194..2fb41b5e2 100644 --- a/packages/uiweb/src/lib/components/chat/MessageInput/MessageInput.tsx +++ b/packages/uiweb/src/lib/components/chat/MessageInput/MessageInput.tsx @@ -51,9 +51,9 @@ interface IThemeProps { export const MessageInput: React.FC = ({ chatId, - Emoji = true, - GIF = true, - File = true, + emoji = true, + gif = true, + file = true, isConnected = true, autoConnect = false, onGetTokenClick, @@ -556,7 +556,7 @@ export const MessageInput: React.FC = ({ (chatFeed && !chatFeed?.groupInformation)) && ( <>
- {Emoji && ( + {emoji && (
= ({ />
- {GIF && ( + {gif && (
= ({
)}
- {!fileUploading && File && ( + {!fileUploading && file && ( <>
void;