From 05c652e45bc742f84e5e8e2ceee0ac216208ef8a Mon Sep 17 00:00:00 2001 From: Ashwinhegde19 <107956700+Ashwinhegde19@users.noreply.github.com> Date: Thu, 8 Jan 2026 02:20:00 +0530 Subject: [PATCH] fix(ui): enable scrolling in Project Files list in Task Creation Wizard (#757) (#785) Remove overflow-hidden from TaskFileExplorerDrawer container to allow the virtualized FileTree's internal scroll container to function properly. The overflow-hidden was clipping the scroll area, preventing users from accessing files beyond the initially visible portion of the list. Signed-off-by: ashwinhegde19 Co-authored-by: Andy <119136210+AndyMik90@users.noreply.github.com> --- .../frontend/src/renderer/components/TaskFileExplorerDrawer.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/frontend/src/renderer/components/TaskFileExplorerDrawer.tsx b/apps/frontend/src/renderer/components/TaskFileExplorerDrawer.tsx index b1e5f3ca..95b7c42c 100644 --- a/apps/frontend/src/renderer/components/TaskFileExplorerDrawer.tsx +++ b/apps/frontend/src/renderer/components/TaskFileExplorerDrawer.tsx @@ -105,7 +105,7 @@ export function TaskFileExplorerDrawer({ isOpen, onClose, projectPath }: TaskFil {/* File tree - no ScrollArea wrapper as FileTree uses virtualization with its own scroll container */} -
+