We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 206631e commit a9bc29bCopy full SHA for a9bc29b
1 file changed
packages/app/src/components/dialog-select-file.tsx
@@ -20,14 +20,11 @@ import {
20
uniqueCommandPaletteEntries,
21
type CommandPaletteEntry,
22
} from "./command-palette"
23
+import { DialogCommandPaletteV2 } from "./dialog-command-palette-v2"
24
25
const DialogSelectFileV2 = lazy(() =>
26
import("./dialog-select-directory-v2").then((module) => ({ default: module.DialogSelectDirectoryV2 })),
27
)
-const DialogCommandPaletteV2 = lazy(() =>
28
- import("./dialog-command-palette-v2").then((module) => ({ default: module.DialogCommandPaletteV2 })),
29
-)
30
-
31
type DialogSelectFileMode = "all" | "files"
32
33
export function DialogSelectFile(props: { mode?: DialogSelectFileMode; onOpenFile?: (path: string) => void }) {
0 commit comments