Skip to content

Commit

Permalink
fix: added scroll fix for file browser
Browse files Browse the repository at this point in the history
  • Loading branch information
thecodacus committed Nov 16, 2024
1 parent f52ba2e commit e2da912
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/components/workbench/FileTree.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ export const FileTree = memo(
};

return (
<div className={classNames('text-sm', className)}>
<div className={classNames('text-sm', className ,'overflow-y-auto')}>
{filteredFileList.map((fileOrFolder) => {
switch (fileOrFolder.kind) {
case 'file': {
Expand Down

0 comments on commit e2da912

Please sign in to comment.