Skip to content

Commit

Permalink
Fix build error
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyrrrz committed Jul 24, 2024
1 parent b4d334a commit 7b6a392
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/Passwordless.AspNetIdentity.Example/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ static async Task<IResult> StepUp(IOptions<PasswordlessOptions> options, HttpCon
{
var http = new HttpClient
{
BaseAddress = new Uri(options.Value.ApiUrl),
BaseAddress = new Uri(options.Value.ApiUrl ?? PasswordlessOptions.CloudApiUrl),
DefaultRequestHeaders = { { "ApiSecret", options.Value.ApiSecret } }
};

Expand Down

0 comments on commit 7b6a392

Please sign in to comment.