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 <[email protected]>
Co-authored-by: Andy <[email protected]>
This commit is contained in:
Ashwinhegde19
2026-01-07 21:50:00 +01:00
committed by GitHub
co-authored by Andy
parent 29ef46d733
commit 05c652e45b
@@ -105,7 +105,7 @@ export function TaskFileExplorerDrawer({ isOpen, onClose, projectPath }: TaskFil
</div>
{/* File tree - no ScrollArea wrapper as FileTree uses virtualization with its own scroll container */}
<div className="flex-1 overflow-hidden min-h-0">
<div className="flex-1 min-h-0">
<FileTree rootPath={projectPath} />
</div>
</motion.div>