Update path in Blazor culture example (#22157)

pull/22158/head
Luke Latham 2021-04-27 13:24:23 -05:00 committed by GitHub
parent bff9fa8741
commit 953ab5d3d5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -231,7 +231,7 @@ The following component shows an example of how to perform the initial redirecti
var query = $"?culture={Uri.EscapeDataString(culture)}&" +
$"redirectUri={Uri.EscapeDataString(uri)}";
NavigationManager.NavigateTo("/Culture/SetCulture" + query, forceLoad: true);
NavigationManager.NavigateTo("Culture/SetCulture" + query, forceLoad: true);
}
}
```