Skip to content

Commit

Permalink
Update typescriptServiceClient.ts, fix naming errors (#155946)
Browse files Browse the repository at this point in the history
Update typescriptServiceClient.ts

fix naming errors
  • Loading branch information
Ryuurock committed Jul 22, 2022
1 parent 82fda35 commit 42e79ca
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -554,8 +554,8 @@ export default class TypeScriptServiceClient extends Disposable implements IType
}

// Reconfigure any plugins
for (const [config, pluginName] of this.pluginManager.configurations()) {
this.configurePlugin(config, pluginName);
for (const [pluginName, config] of this.pluginManager.configurations()) {
this.configurePlugin(pluginName, config);
}
}

Expand Down

0 comments on commit 42e79ca

Please sign in to comment.