This commit is contained in:
Kevin
2025-06-16 13:09:19 -05:00
parent bc2ba07eb7
commit 8b9776c4a1
2 changed files with 2 additions and 6 deletions

View File

@ -42,7 +42,6 @@ const Spacer = (level: number) => {
)
}
/**
* Render all the rows of the file explorer in linear layout in the DOM.
* each row is rendered one after another in the same parent DOM element

View File

@ -1,17 +1,14 @@
import type { Project } from '@src/lib/project'
import type { CustomIconName } from '@src/components/CustomIcon'
import { FILE_EXT } from '@src/lib/constants'
import {
FileExplorer,
StatusDot,
} from '@src/components/Explorer/FileExplorer'
import { FileExplorer, StatusDot } from '@src/components/Explorer/FileExplorer'
import {
FileExplorerRow,
constructPath,
flattenProject,
NOTHING_IS_SELECTED,
CONTAINER_IS_SELECTED,
STARTING_INDEX_TO_SELECT
STARTING_INDEX_TO_SELECT,
} from '@src/components/Explorer/utils'
import type { FileExplorerEntry } from '@src/components/Explorer/utils'
import { FileExplorerHeaderActions } from '@src/components/Explorer/FileExplorerHeaderActions'