Skip to content

Commit

Permalink
Fix Set of one string literal bug in openExternalProject (#59686)
Browse files Browse the repository at this point in the history
  • Loading branch information
jakebailey authored Aug 19, 2024
1 parent bff6aa1 commit 6894ff7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/editorServices.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4959,7 +4959,7 @@ export class ProjectService {
if (cleanupAfter) {
this.cleanupConfiguredProjects(
configuredProjects,
new Set(proj.projectFileName),
new Set([proj.projectFileName]),
);
this.printProjects();
}
Expand Down

0 comments on commit 6894ff7

Please sign in to comment.