Skip to content

Commit

Permalink
Improve readability
Browse files Browse the repository at this point in the history
  • Loading branch information
afshin committed Sep 6, 2022
1 parent ab2d90a commit a25a527
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/application/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -855,7 +855,7 @@ namespace Private {
const collection = new Map<string, boolean>();

// Collect the auto-start plugins.
for (const [id] of plugins) {
for (const id of plugins.keys()) {
if (plugins.get(id)!.autoStart) {
collection.set(id, true);
}
Expand Down

0 comments on commit a25a527

Please sign in to comment.