From 774bfb5adff66f27cda057d73b837f7653c10b48 Mon Sep 17 00:00:00 2001 From: vibe-bot Date: Sat, 9 Aug 2025 16:15:42 +0200 Subject: [PATCH] chore: sync working tree before switching branches --- server/src/index.ts | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) 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 ---