diff --git a/server/src/index.ts b/server/src/index.ts index d9bfed0..8abbf67 100644 --- a/server/src/index.ts +++ b/server/src/index.ts @@ -333,14 +333,7 @@ app.use(express.json()); app.use(cors()); app.get('/api/health', (_req: Request, res: Response) => { - res.json({ - ok: true, - totalPlays: persistedState.totalPlays ?? 0, - buildInfo: { - version: process.env.VITE_APP_VERSION || '1.0.0', - channel: process.env.VITE_BUILD_CHANNEL || 'stable' - } - }); + res.json({ ok: true, totalPlays: persistedState.totalPlays ?? 0 }); }); // --- Admin Auth ---