Fix modifier declaration order (#23452)
parent
6f81219ee6
commit
43c285e58d
|
@ -417,7 +417,7 @@ The following example shows how to:
|
|||
|
||||
public Profile User { get; set; } = new Profile();
|
||||
|
||||
protected async override Task OnInitializedAsync()
|
||||
protected override async Task OnInitializedAsync()
|
||||
{
|
||||
var currentQuery = new Uri(Navigation.Uri).Query;
|
||||
|
||||
|
@ -550,7 +550,7 @@ The `Authentication` component (`Pages/Authentication.razor`) saves and restores
|
|||
public ApplicationAuthenticationState AuthenticationState { get; set; } =
|
||||
new ApplicationAuthenticationState();
|
||||
|
||||
protected async override Task OnInitializedAsync()
|
||||
protected override async Task OnInitializedAsync()
|
||||
{
|
||||
if (RemoteAuthenticationActions.IsAction(RemoteAuthenticationActions.LogIn,
|
||||
Action) ||
|
||||
|
|
Loading…
Reference in New Issue