From 474d03c071867dacb40dbdef993d6714b276f558 Mon Sep 17 00:00:00 2001 From: Daniel Abbatt Date: Wed, 19 Feb 2020 19:16:11 +0000 Subject: [PATCH] Typo in the exception message that's returned Typo in the exception message that's returned Rendererd should be Rendered --- src/Components/Server/src/Circuits/RemoteJSRuntime.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Components/Server/src/Circuits/RemoteJSRuntime.cs b/src/Components/Server/src/Circuits/RemoteJSRuntime.cs index 0ef78bcf0f..1d9205e1ba 100644 --- a/src/Components/Server/src/Circuits/RemoteJSRuntime.cs +++ b/src/Components/Server/src/Circuits/RemoteJSRuntime.cs @@ -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."); }