Skip to content

Commit

Permalink
fix: debugger statement in wrong place
Browse files Browse the repository at this point in the history
  • Loading branch information
Codeneos committed Dec 18, 2023
1 parent 80289b8 commit 80fe6e5
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions packages/vscode-extension/src/lib/vlocodeService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,6 @@ export default class VlocodeService implements vscode.Disposable, SalesforceConn
if (await this.handleAuthTokenExpiredError()) {
this.initializePromise = undefined;
return this.initialize();
} else {
debugger;
}
} else if (err?.code == 'ENOTFOUND') {
this.logger.error(`Unable to reach Salesforce; are you connected to the internet?`);
Expand Down Expand Up @@ -535,7 +533,7 @@ export default class VlocodeService implements vscode.Disposable, SalesforceConn
if (!this.isInitialized) {
// Await service initialization
await vscode.window.withProgress({
title: 'Vlocode: waiting for initialization...',
title: 'Vlocode: Initializing...',
location: vscode.ProgressLocation.Window
}, () => this.initialize());
}
Expand Down

0 comments on commit 80fe6e5

Please sign in to comment.