From 9247e46f251430a4592c2a8e046ea10e9faf6904 Mon Sep 17 00:00:00 2001 From: Zane <75694352+zanesq@users.noreply.github.com> Date: Tue, 7 Oct 2025 08:31:11 -0700 Subject: [PATCH] Allow auto focus and typing while chat is initializing (#5043) --- ui/desktop/src/components/ChatInput.tsx | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/ui/desktop/src/components/ChatInput.tsx b/ui/desktop/src/components/ChatInput.tsx index 9d2d3472..92763dde 100644 --- a/ui/desktop/src/components/ChatInput.tsx +++ b/ui/desktop/src/components/ChatInput.tsx @@ -1183,13 +1183,7 @@ export default function ChatInput({ isExtensionsLoading; const isUserInputDisabled = - isAnyImageLoading || - isAnyDroppedFileLoading || - isRecording || - isTranscribing || - isCompacting || - !agentIsReady || - isExtensionsLoading; + isAnyImageLoading || isAnyDroppedFileLoading || isRecording || isTranscribing || isCompacting; // Queue management functions - no storage persistence, only in-memory const handleRemoveQueuedMessage = (messageId: string) => {