From b0b94c2b7d8400110c7c343469f224373c295743 Mon Sep 17 00:00:00 2001 From: Rob Colbert Date: Tue, 12 May 2026 17:22:29 -0400 Subject: [PATCH] Fix: FileTree scrolling - use h-full instead of flex-1 - FileTree had flex-1 inside an overflow container which didn't work - Changed to h-full to properly fill the parent container height - Scrolling now works correctly in the file tree area --- gadget-code/frontend/src/components/FileTree.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gadget-code/frontend/src/components/FileTree.tsx b/gadget-code/frontend/src/components/FileTree.tsx index 6603fdf..f3f6509 100644 --- a/gadget-code/frontend/src/components/FileTree.tsx +++ b/gadget-code/frontend/src/components/FileTree.tsx @@ -166,7 +166,7 @@ export default function FileTree({ workspaceMode, onFileSelect }: FileTreeProps) const rootLoading = state.loadingPaths.has(''); return ( -
+
{rootLoading && (