diff --git a/react/features/chat/components/web/ChatInput.tsx b/react/features/chat/components/web/ChatInput.tsx index 7614a2e9ad..127ad56ebb 100644 --- a/react/features/chat/components/web/ChatInput.tsx +++ b/react/features/chat/components/web/ChatInput.tsx @@ -90,6 +90,8 @@ class ChatInput extends Component { if (isMobileBrowser()) { // Ensure textarea is not focused when opening chat on mobile browser. this._textArea?.current && this._textArea.current.blur(); + } else { + this._focus(); } }