Skip to content

Commit

Permalink
fix(azure): remove default prompt
Browse files Browse the repository at this point in the history
  • Loading branch information
paul-vd committed Dec 6, 2024
1 parent 1faa516 commit 0a92a04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/azure.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export class AzureStrategy<User> extends OAuth2Strategy<User> {
);

this.scopes = options.scopes ?? ["openid", "profile", "offline_access"];
this.prompt = options.prompt ?? "none";
this.prompt = options.prompt;
}

protected override authorizationParams(params: URLSearchParams) {
Expand Down

0 comments on commit 0a92a04

Please sign in to comment.