### Environment Node 24, H3 v2 beta ### Reproduction https://github.com/beeequeue/h3-next-repro ### Describe the bug Calling `await next()` in global middleware causes request handlers to be called twice, as in the repro: ```ts let value = 0 const app = new H3() .use(async (event, next) => { const start = Date.now() console.log(event.url.pathname) await next() console.log(`took ${Date.now() - start}ms`) }) .get("/test", async () => { value++ return "Ok" }) ``` After calling `GET /test` `value` will be 2 and not 1.