Minor UI fix to explorer tree (#3328)

Co-authored-by: Tim O'Farrell <tofarr@gmai.com>
Co-authored-by: Graham Neubig <neubig@gmail.com>
This commit is contained in:
tofarr 2024-08-09 17:33:35 -06:00 committed by GitHub
parent e059407c74
commit ace733cb1f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -18,7 +18,7 @@ function ExplorerTree({ files, defaultOpen = false }: ExplorerTreeProps) {
);
}
return (
<div className="w-full overflow-x-auto h-full pt-[4px]">
<div className="w-full h-full pt-[4px]">
{files.map((file) => (
<TreeNode key={file} path={file} defaultOpen={defaultOpen} />
))}