@@ -598,8 +598,7 @@ private async Task AddComponentAsync<TComponent>(CircuitHost circuitHost, int ss
598598 } ;
599599
600600 // Add component
601- await circuitHost . UpdateRootComponents (
602- new ( ) { Operations = [ addOperation ] } , null , CreateDeserializer ( ) , CancellationToken . None ) ;
601+ await circuitHost . UpdateRootComponents ( new ( ) { Operations = [ addOperation ] } , null , CancellationToken . None ) ;
603602 }
604603
605604 private async Task UpdateComponentAsync < TComponent > ( CircuitHost circuitHost , int ssrComponentId , Dictionary < string , object > parameters = null , string componentKey = "" )
@@ -615,8 +614,7 @@ private async Task UpdateComponentAsync<TComponent>(CircuitHost circuitHost, int
615614 } ;
616615
617616 // Update component
618- await circuitHost . UpdateRootComponents (
619- new ( ) { Operations = [ updateOperation ] } , null , CreateDeserializer ( ) , CancellationToken . None ) ;
617+ await circuitHost . UpdateRootComponents ( new ( ) { Operations = [ updateOperation ] } , null , CancellationToken . None ) ;
620618 }
621619
622620 private async Task RemoveComponentAsync ( CircuitHost circuitHost , int ssrComponentId )
@@ -628,8 +626,7 @@ private async Task RemoveComponentAsync(CircuitHost circuitHost, int ssrComponen
628626 } ;
629627
630628 // Remove component
631- await circuitHost . UpdateRootComponents (
632- new ( ) { Operations = [ removeOperation ] } , null , CreateDeserializer ( ) , CancellationToken . None ) ;
629+ await circuitHost . UpdateRootComponents ( new ( ) { Operations = [ removeOperation ] } , null , CancellationToken . None ) ;
633630 }
634631
635632 private ProtectedPrerenderComponentApplicationStore CreateStore ( )
0 commit comments