dan67

Results 2 comments of dan67

Hi, Removed calls to base and added GC to CTOR: ``` private Stopwatch _stopwatch; public ButtonPage() { GC.Collect(); Thread.Sleep(10000); } protected override void OnInitialized() { _stopwatch = Stopwatch.StartNew(); // base.OnInitialized();...

I was creating the project with `dotnet new fluentuiblazorserver -n ButtonTest` (see step 1 in repro)