From 8db07b0953ed09f4742641fb4278a0a9859a4905 Mon Sep 17 00:00:00 2001 From: Wessel Haze Date: Sat, 20 Dec 2025 14:29:36 +0100 Subject: [PATCH] Remove NotFound components from the .NET 10 Microsoft.NET.Sdk.BlazorWebAssembly template App.Razor implementation because dual use in combination with the Router's NotFoundPage prop is not supported I chose this implementation over the NotFoundComponent because there is a routablecomponent/page for the notfound in this version of the template, the NotfoundPage is more aligned with the other template version however Signed-off-by: Wessel Haze --- .../componentswebassembly-csharp-10/App.razor | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/src/Templates/templates/componentswebassembly-csharp-10/App.razor b/src/Templates/templates/componentswebassembly-csharp-10/App.razor index 228b01e1ec..cf26ff7327 100644 --- a/src/Templates/templates/componentswebassembly-csharp-10/App.razor +++ b/src/Templates/templates/componentswebassembly-csharp-10/App.razor @@ -3,12 +3,6 @@ - - Not found - -

Sorry, there's nothing at this address.

-
-
#else @@ -27,12 +21,6 @@ - - Not found - -

Sorry, there's nothing at this address.

-
-
#endif*@