Skip to content

Commit 51c5c77

Browse files
auth: Fixup oopsie (#1595)
1 parent 7dbd629 commit 51c5c77

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

auth/src/VSCodeAzureSubscriptionProvider.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ export class VSCodeAzureSubscriptionProvider extends vscode.Disposable implement
297297
}
298298
});
299299

300-
const scopeSet = new Set<string>([...arrScopes]);
300+
const scopeSet = new Set<string>(arrScopes);
301301
if (tenantId) {
302302
scopeSet.add(`VSCODE_TENANT:${tenantId}`);
303303
}

0 commit comments

Comments
 (0)