diff --git a/frontend/src/components/FileBrowser/FileBrowser.tsx b/frontend/src/components/FileBrowser/FileBrowser.tsx index 6c1a010..00e6070 100644 --- a/frontend/src/components/FileBrowser/FileBrowser.tsx +++ b/frontend/src/components/FileBrowser/FileBrowser.tsx @@ -49,9 +49,6 @@ export default function FileBrowser({ libraryId }: Props) { - {pathParts.map((part, i) => { const partPath = pathParts.slice(0, i + 1).join("/"); return ( @@ -63,6 +60,9 @@ export default function FileBrowser({ libraryId }: Props) { ); })} + {isLoading &&

Loading…

}