Based on the following code, Swagger does not return the response object on the /openapi page: <img width="3600" height="2338" alt="Image" src="https://github.com/user-attachments/assets/bdf506c6-7f09-4b03-8f9d-93c29dfc68bd" /> ```ts import { Elysia } from 'elysia' import { openapi } from '@elysiajs/openapi' import { z } from 'zod' const app = new Elysia() .use(openapi({ mapJsonSchema: { zod: z.toJSONSchema } })) .get('/hey', c => c.status(200, 'hey'), { response: { 200: z.union([z.literal('hey'), z.undefined()]), }, }); app.listen(3000); ```