Skip to content

Commit

Permalink
auth: Fixup oopsie
Browse files Browse the repository at this point in the history
  • Loading branch information
alexweininger committed Sep 21, 2023
1 parent 7dbd629 commit ec7ba6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion auth/src/VSCodeAzureSubscriptionProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ export class VSCodeAzureSubscriptionProvider extends vscode.Disposable implement
}
});

const scopeSet = new Set<string>([...arrScopes]);
const scopeSet = new Set<string>(arrScopes);
if (tenantId) {
scopeSet.add(`VSCODE_TENANT:${tenantId}`);
}
Expand Down

0 comments on commit ec7ba6f

Please sign in to comment.