Skip to content

Commit 0569bf7

Browse files
committed
chore: format
1 parent 06fc217 commit 0569bf7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

packages/react-router-dev/config/defaults/entry.server.node.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export default function handleRequest(
1414
responseStatusCode: number,
1515
responseHeaders: Headers,
1616
routerContext: EntryContext,
17-
loadContext: AppLoadContext
17+
loadContext: AppLoadContext,
1818
// If you have middleware enabled:
1919
// loadContext: unstable_RouterContextProvider
2020
) {
@@ -33,7 +33,7 @@ export default function handleRequest(
3333
// flush down the rejected boundaries
3434
let timeoutId: ReturnType<typeof setTimeout> | undefined = setTimeout(
3535
() => abort(),
36-
streamTimeout + 1000
36+
streamTimeout + 1000,
3737
);
3838

3939
const { pipe, abort } = renderToPipeableStream(
@@ -59,7 +59,7 @@ export default function handleRequest(
5959
new Response(stream, {
6060
headers: responseHeaders,
6161
status: responseStatusCode,
62-
})
62+
}),
6363
);
6464
},
6565
onShellError(error: unknown) {
@@ -74,7 +74,7 @@ export default function handleRequest(
7474
console.error(error);
7575
}
7676
},
77-
}
77+
},
7878
);
7979
});
8080
}

0 commit comments

Comments
 (0)