Typo in the exception message that's returned

Typo in the exception message that's returned
Rendererd should be Rendered
This commit is contained in:
Daniel Abbatt 2020-02-19 19:16:11 +00:00 committed by Steve Sanderson
parent b6698757a8
commit 474d03c071
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ namespace Microsoft.AspNetCore.Components.Server.Circuits
{
throw new InvalidOperationException(
"JavaScript interop calls cannot be issued at this time. This is because the component is being " +
$"statically rendererd. When prerendering is enabled, JavaScript interop calls can only be performed " +
$"statically rendered. When prerendering is enabled, JavaScript interop calls can only be performed " +
$"during the OnAfterRenderAsync lifecycle method.");
}