Skip to content

Commit 19eff04

Browse files
committed
Fix return
1 parent ad5fa23 commit 19eff04

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/providers/ExportProvider.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ export class ExportProvider implements vscode.TreeDataProvider<ExportFolder> {
8989
// Generate the path for the open command
9090
const filePath = isFolder ? pathResolve(indexPath) : absPath;
9191
if (!filePath) {
92-
return;
92+
return [];
9393
}
9494
let fileUri = vscode.Uri.file(filePath);
9595

0 commit comments

Comments
 (0)