We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ea343c commit d3f30dfCopy full SHA for d3f30df
1 file changed
packages/app/src/components/dialog-select-directory.tsx
@@ -57,9 +57,9 @@ export function DialogSelectDirectory(props: DialogSelectDirectoryProps) {
57
const [filter, setFilter] = createSignal("")
58
let list: ListRef | undefined
59
60
- const missingBase = createMemo(() => !(sync.data.path.home || sync.data.path.directory))
+ const missingHome = createMemo(() => !sync.data.path.home)
61
const [fallbackPath] = createResource(
62
- () => (missingBase() ? true : undefined),
+ () => (missingHome() ? true : undefined),
63
async (): Promise<Path | undefined> => {
64
if ((await sdk.protocol) !== "v1") return
65
return sdk.client.path
0 commit comments