HonoH
Hono2y ago
9 replies
MarvinKR

All GET/POST api calls returns Internal server error 500

I'm using Hono for my app https://platform.procureezy.com/workflows but it keeps returning this error for all my API calls : GET https://platform.procureezy.com/api/workflows 500 (Internal Server Error)

[[...route]]
app.onError((err, c) => {
  if (err instanceof HTTPException) {
    return err.getResponse();
  }
  return new Response("Internal Server Error", { status: 500 });
});


workflow.ts
Was this page helpful?