diff --git a/bench/react-hello-world/react-hello-world.jsx b/bench/react-hello-world/react-hello-world.jsx index 69dd43e937..9cb1d4165a 100644 --- a/bench/react-hello-world/react-hello-world.jsx +++ b/bench/react-hello-world/react-hello-world.jsx @@ -24,7 +24,7 @@ const port = Number(process.env.PORT || 3001); Bun.serve({ port, async fetch(req) { - return new Response(await renderToReadableStream()); + return new Response(await renderToReadableStream(), headers); }, });