From 7c327ed00770e4333fcb647be8f7e4313b0d69f3 Mon Sep 17 00:00:00 2001 From: AndyMik90 Date: Wed, 17 Dec 2025 09:51:50 +0100 Subject: [PATCH] auto-claude: subtask-1-2 - Pass hideCloseButton={showFileExplorer} to DialogContent MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Hide the modal's close button when the file explorer drawer is open to prevent visual overlap with the drawer's close button. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- auto-claude-ui/src/renderer/components/TaskCreationWizard.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/auto-claude-ui/src/renderer/components/TaskCreationWizard.tsx b/auto-claude-ui/src/renderer/components/TaskCreationWizard.tsx index 8eb5eae1..e86f8092 100644 --- a/auto-claude-ui/src/renderer/components/TaskCreationWizard.tsx +++ b/auto-claude-ui/src/renderer/components/TaskCreationWizard.tsx @@ -455,6 +455,7 @@ export function TaskCreationWizard({ "max-h-[90vh] p-0 overflow-hidden transition-all duration-300 ease-out", showFileExplorer ? "sm:max-w-[900px]" : "sm:max-w-[550px]" )} + hideCloseButton={showFileExplorer} >
{/* Form content */}