Skip to content

Commit

Permalink
docs: fix typo in self-host after() details (#74243)
Browse files Browse the repository at this point in the history
fix typo

Co-authored-by: Zack Tanner <[email protected]>
  • Loading branch information
sommeeeer and ztanner authored Dec 23, 2024
1 parent 18be41b commit 6543d0b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ When `after` is called, Next.js will access `waitUntil` like this:
```jsx
const RequestContext = globalThis[Symbol.for('@next/request-context')]
const contextValue = RequestContext?.get()
const waitUntil = context?.waitUntil
const waitUntil = contextValue?.waitUntil
```
Which means that `globalThis[Symbol.for('@next/request-context')]` is expected to contain an object like this:
Expand Down

0 comments on commit 6543d0b

Please sign in to comment.