Fix modifier declaration order (#23452)

pull/23460/head
Jonathan 2021-10-05 17:56:31 +02:00 committed by GitHub
parent 6f81219ee6
commit 43c285e58d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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) ||