Skip to content

Commit cf443bf

Browse files
committed
Fix build
1 parent da31a8d commit cf443bf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Components/Server/test/Circuits/TestCircuitIdFactory.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ namespace Microsoft.AspNetCore.Components.Server.Circuits;
77

88
internal class TestCircuitIdFactory
99
{
10-
public static CircuitIdFactory? Instance { get; } = CreateTestFactory();
10+
public static CircuitIdFactory Instance { get; } = CreateTestFactory();
1111

1212
public static CircuitIdFactory CreateTestFactory()
1313
{

src/Components/test/testassets/TestContentPackage/PersistentCounter.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
public int Count { get; set; } = 0;
2222
}
2323

24-
protected override async Task OnInitializedAsync()
24+
protected override void OnInitialized()
2525
{
2626
// State is preserved across disconnections
2727
State ??= new CounterState();

0 commit comments

Comments
 (0)