diff --git a/autogpt_platform/frontend/src/app/(platform)/copilot/components/ChatInput/ChatInput.tsx b/autogpt_platform/frontend/src/app/(platform)/copilot/components/ChatInput/ChatInput.tsx
index 1a00f8def6..c4c116b3cd 100644
--- a/autogpt_platform/frontend/src/app/(platform)/copilot/components/ChatInput/ChatInput.tsx
+++ b/autogpt_platform/frontend/src/app/(platform)/copilot/components/ChatInput/ChatInput.tsx
@@ -218,25 +218,19 @@ export function ChatInput({
onFilesSelected={handleFilesSelected}
disabled={isBusy}
/>
- {showModeToggle &&
- !isStreaming &&
- (!hasSession || copilotChatMode === "extended_thinking") && (
-
- )}
- {showModeToggle &&
- !isStreaming &&
- (!hasSession || copilotLlmModel === "advanced") && (
-
- )}
- {showDryRunToggle && (!hasSession || isDryRun) && (
+ {showModeToggle && !isStreaming && !hasSession && (
+
+ )}
+ {showModeToggle && !isStreaming && !hasSession && (
+
+ )}
+ {showDryRunToggle && (
void;
- readOnly?: boolean;
}
-export function ModeToggleButton({ mode, onToggle, readOnly = false }: Props) {
+export function ModeToggleButton({ mode, onToggle }: Props) {
const isExtended = mode === "extended_thinking";
return (