mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-25 19:18:59 +01:00
auto-fixed prefer-const violation
This commit is contained in:
@@ -205,7 +205,7 @@ export class UserDataSyncWorkbenchService extends Disposable implements IUserDat
|
||||
}
|
||||
|
||||
private async getAccounts(authenticationProviderId: string, scopes: string[]): Promise<UserDataSyncAccount[]> {
|
||||
let accounts: Map<string, UserDataSyncAccount> = new Map<string, UserDataSyncAccount>();
|
||||
const accounts: Map<string, UserDataSyncAccount> = new Map<string, UserDataSyncAccount>();
|
||||
let currentAccount: UserDataSyncAccount | null = null;
|
||||
|
||||
const sessions = await this.authenticationService.getSessions(authenticationProviderId, scopes) || [];
|
||||
|
||||
Reference in New Issue
Block a user