File tree 2 files changed +1
-7
lines changed 2 files changed +1
-7
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,6 @@ export function enableMemoryDebuggingMode(): void {
9
9
// memory limit. It does not give any warning to the user though which
10
10
// can be jarring. If memory is large, this may take a long time.
11
11
if ( 'setHeapSnapshotNearHeapLimit' in v8 ) {
12
- // @ts -expect-error - this method exists since Node 16.
13
12
v8 . setHeapSnapshotNearHeapLimit ( 1 )
14
13
}
15
14
Original file line number Diff line number Diff line change @@ -471,11 +471,6 @@ export async function renderToHTMLImpl(
471
471
renderOpts . Component
472
472
const OriginComponent = Component
473
473
474
- let serverComponentsInlinedTransformStream : TransformStream <
475
- Uint8Array ,
476
- Uint8Array
477
- > | null = null
478
-
479
474
const isFallback = ! ! query . __nextFallback
480
475
const notFoundSrcPage = query . __nextNotFoundSrcPage
481
476
@@ -1354,7 +1349,7 @@ export async function renderToHTMLImpl(
1354
1349
( initialStream : ReactReadableStream , suffix ?: string ) => {
1355
1350
return continueFizzStream ( initialStream , {
1356
1351
suffix,
1357
- inlinedDataStream : serverComponentsInlinedTransformStream ?. readable ,
1352
+ inlinedDataStream : undefined ,
1358
1353
isStaticGeneration : true ,
1359
1354
// this must be called inside bodyResult so appWrappers is
1360
1355
// up to date when `wrapApp` is called
You can’t perform that action at this time.
0 commit comments