Skip to content

Commit acc9f05

Browse files
committed
fmt
1 parent 68d592a commit acc9f05

1 file changed

Lines changed: 8 additions & 2 deletions

File tree

packages/react-dom-bindings/src/server/ReactFizzConfigDOM.js

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff 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;

0 commit comments

Comments
 (0)