We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a33370 commit fab3dceCopy full SHA for fab3dce
packages/app/src/app/pages/Dashboard/Content/routes/Sandboxes/useFilteredItems.ts
@@ -39,9 +39,11 @@ export const useFilteredItems = (
39
useEffect(() => {
40
const sandboxesForPath = getFilteredSandboxes(folderSandboxes || []);
41
const normalizedPath = normalizePath(path);
42
+
43
const folderFolders =
44
allCollections?.filter(
- collection => getParentPath(collection.path) === normalizedPath
45
+ collection =>
46
+ normalizePath(getParentPath(collection.path)) === normalizedPath
47
) || [];
48
49
const sortedFolders = orderBy(folderFolders, 'name').sort(a => 1);
0 commit comments