Skip to content

Commit 6894ff7

Browse files
authored
Fix Set of one string literal bug in openExternalProject (#59686)
1 parent bff6aa1 commit 6894ff7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/server/editorServices.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4959,7 +4959,7 @@ export class ProjectService {
49594959
if (cleanupAfter) {
49604960
this.cleanupConfiguredProjects(
49614961
configuredProjects,
4962-
new Set(proj.projectFileName),
4962+
new Set([proj.projectFileName]),
49634963
);
49644964
this.printProjects();
49654965
}

0 commit comments

Comments
 (0)