chore: sync working tree before switching branches

This commit is contained in:
vibe-bot 2025-08-09 16:15:42 +02:00
parent 138f56d100
commit 774bfb5adf

View file

@ -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 ---