We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a3734d commit 28e11dfCopy full SHA for 28e11df
src/commands.ts
@@ -407,7 +407,7 @@ async function openWorkspace(
407
if (opened.length === 1 || (opened.length > 1 && openRecent)) {
408
folderPath = opened[0].folderUri.path
409
} else if (opened.length > 1) {
410
- const items: vscode.QuickPickItem[] = opened.map((folder): vscode.QuickPickItem => {
+ const items = opened.map<vscode.QuickPickItem>((folder) => {
411
return {
412
label: folder.folderUri.path,
413
}
0 commit comments