File tree Expand file tree Collapse file tree
packages/react-dom-bindings/src/server Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -5232,7 +5232,10 @@ function flushStyleTagsLateForBoundary(
52325232 }
52335233 let i = 0 ;
52345234 if ( hrefs . length ) {
5235- writeChunk ( this , ( ( currentlyFlushingRenderState : any ) : RenderState ) . startInlineStyle ) ;
5235+ writeChunk (
5236+ this ,
5237+ ( ( currentlyFlushingRenderState : any ) : RenderState ) . startInlineStyle ,
5238+ ) ;
52365239 writeChunk ( this , lateStyleTagResourceOpen1 ) ;
52375240 writeChunk ( this , styleQueue . precedence ) ;
52385241 writeChunk ( this , lateStyleTagResourceOpen2 ) ;
@@ -5349,7 +5352,10 @@ function flushStylesInPreamble(
53495352 // order so even if there are no rules for style tags at this precedence we emit an empty style
53505353 // tag with the data-precedence attribute
53515354 if ( ! hasStylesheets || hrefs . length ) {
5352- writeChunk ( this , ( ( currentlyFlushingRenderState : any ) : RenderState ) . startInlineStyle ) ;
5355+ writeChunk (
5356+ this ,
5357+ ( ( currentlyFlushingRenderState : any ) : RenderState ) . startInlineStyle ,
5358+ ) ;
53535359 writeChunk ( this , styleTagResourceOpen1 ) ;
53545360 writeChunk ( this , styleQueue . precedence ) ;
53555361 let i = 0 ;
You can’t perform that action at this time.
0 commit comments