We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e773fa9 commit 26d4e73Copy full SHA for 26d4e73
samples/UAuthHub/CodeBeam.UltimateAuth.Sample.UAuthHub/Components/Pages/Home.razor.cs
@@ -39,13 +39,12 @@ protected override async Task OnAfterRenderAsync(bool firstRender)
39
40
if (HubState is null || !HubState.Exists)
41
{
42
- await StartNewPkceAsync();
43
return;
44
}
45
46
if (HubState.IsExpired)
47
48
+ await ContinuePkceAsync();
49
50
51
@@ -154,10 +153,6 @@ private async Task<string> ResolveReturnUrlAsync()
154
153
return flow.ReturnUrl!;
155
156
157
- // Config default (recommend adding to options)
158
- //if (!string.IsNullOrWhiteSpace(_options.Login.DefaultReturnUrl))
159
- // return _options.Login.DefaultReturnUrl!;
160
-
161
return Nav.Uri;
162
163
0 commit comments