Skip to content

Commit 54723f6

Browse files
committed
Fix build
1 parent fbd01d0 commit 54723f6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Components/test/testassets/Components.TestServer/RazorComponentEndpointsStartup.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,9 @@ public void ConfigureServices(IServiceCollection services)
3030
options.MaxFormMappingRecursionDepth = 5;
3131
options.MaxFormMappingCollectionSize = 100;
3232
})
33+
.AddWebAssemblyComponents()
3334
.AddServerComponents()
34-
.AddWebAssemblyComponents();
35+
.AddHubOptions(ho => { });
3536
services.AddHttpContextAccessor();
3637
services.AddSingleton<AsyncOperationService>();
3738
services.AddCascadingAuthenticationState();

0 commit comments

Comments
 (0)