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 <ashwinhegde19@gmail.com>
Co-authored-by: Andy <119136210+AndyMik90@users.noreply.github.com>
This commit is contained in:
Ashwinhegde19
2026-01-08 02:20:00 +05:30
committed by GitHub
parent 29ef46d733
commit 05c652e45b
@@ -105,7 +105,7 @@ export function TaskFileExplorerDrawer({ isOpen, onClose, projectPath }: TaskFil
</div> </div>
{/* File tree - no ScrollArea wrapper as FileTree uses virtualization with its own scroll container */} {/* 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} /> <FileTree rootPath={projectPath} />
</div> </div>
</motion.div> </motion.div>