We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da31a8d commit cf443bfCopy full SHA for cf443bf
src/Components/Server/test/Circuits/TestCircuitIdFactory.cs
@@ -7,7 +7,7 @@ namespace Microsoft.AspNetCore.Components.Server.Circuits;
7
8
internal class TestCircuitIdFactory
9
{
10
- public static CircuitIdFactory? Instance { get; } = CreateTestFactory();
+ public static CircuitIdFactory Instance { get; } = CreateTestFactory();
11
12
public static CircuitIdFactory CreateTestFactory()
13
src/Components/test/testassets/TestContentPackage/PersistentCounter.razor
@@ -21,7 +21,7 @@
21
public int Count { get; set; } = 0;
22
}
23
24
- protected override async Task OnInitializedAsync()
+ protected override void OnInitialized()
25
26
// State is preserved across disconnections
27
State ??= new CounterState();
0 commit comments