From f8c7b8205816d173a20d4659bc987d06d47a010f Mon Sep 17 00:00:00 2001 From: Victor Date: Tue, 23 Jun 2026 21:57:30 -0400 Subject: [PATCH] feat: normalize health response shape --- apps/api/src/index.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/apps/api/src/index.ts b/apps/api/src/index.ts index 1648ba43fa..b620290489 100644 --- a/apps/api/src/index.ts +++ b/apps/api/src/index.ts @@ -8,7 +8,12 @@ const port = process.env.PORT || 4000; app.use(express.json()); app.get("/health", (_req, res) => { - res.json({ status: "ok", service: "taskflow-api" }); + res.json({ + status: "ok", + data: { + service: "taskflow-api" + } + }); }); app.use("/users", usersRouter);