diff --git a/autogpt_platform/frontend/src/components/contextual/Chat/components/ChatInput/ChatInput.tsx b/autogpt_platform/frontend/src/components/contextual/Chat/components/ChatInput/ChatInput.tsx index 65319a9ad7..99aa08f211 100644 --- a/autogpt_platform/frontend/src/components/contextual/Chat/components/ChatInput/ChatInput.tsx +++ b/autogpt_platform/frontend/src/components/contextual/Chat/components/ChatInput/ChatInput.tsx @@ -79,7 +79,11 @@ export function ChatInput({ onChange={handleChange} onKeyDown={handleKeyDown} placeholder={ - isTranscribing ? "Transcribing..." : isRecording ? "" : placeholder + isTranscribing + ? "Transcribing..." + : isRecording + ? "" + : placeholder } disabled={isInputDisabled} rows={1}