Fix file paths opening (#2382)

This commit is contained in:
Geometrically
2024-09-10 01:36:56 -07:00
committed by GitHub
parent 9500384100
commit 0221034b60
11 changed files with 14 additions and 15 deletions

View File

@@ -20,7 +20,7 @@ const handleAddContentFromFile = async () => {
if (!newProject) return
for (const project of newProject) {
await add_project_from_path(props.instance.path, project.path).catch(handleError)
await add_project_from_path(props.instance.path, project.path ?? project).catch(handleError)
}
}