Skip to content

Commit 40fca1c

Browse files
committed
fixup!
1 parent d6db773 commit 40fca1c

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

packages/open-next/src/adapters/edge-adapter.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
import type { ReadableStream } from "node:stream/web";
22

3-
import type { InternalEvent, InternalResult, WaitUntil } from "types/open-next";
3+
import type { InternalEvent, InternalResult } from "types/open-next";
44
import { runWithOpenNextRequestContext } from "utils/promise";
55
import { emptyReadableStream } from "utils/stream";
66

7+
import type { OpenNextHandlerOptions } from "types/overrides";
78
// We import it like that so that the edge plugin can replace it
89
import { NextConfig } from "../adapters/config";
910
import { createGenericHandler } from "../core/createGenericHandler";
1011
import {
1112
convertBodyToReadableStream,
1213
convertToQueryString,
1314
} from "../core/routing/util";
14-
import type { OpenNextHandlerOptions } from "types/overrides";
1515

1616
globalThis.__openNextAls = new AsyncLocalStorage();
1717

packages/open-next/src/utils/promise.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,6 @@ async function awaitAllDetachedPromise() {
7373
}
7474

7575
function provideNextAfterProvider() {
76-
/** This should be considered unstable until `unstable_after` is stabilized. */
7776
const NEXT_REQUEST_CONTEXT_SYMBOL = Symbol.for("@next/request-context");
7877

7978
// This is needed by some lib that relies on the vercel request context to properly await stuff.

0 commit comments

Comments
 (0)