Fix TypeScript unused variable errors

This commit is contained in:
2026-01-06 01:54:23 +01:00
parent 90eb4b0c43
commit 50a3c7fe24
4 changed files with 5 additions and 5 deletions

View File

@@ -64,7 +64,7 @@ if (isProduction) {
app.use(express.static(clientPath));
// SPA fallback
app.get('*', (req, res) => {
app.get('*', (_req, res) => {
res.sendFile(path.join(clientPath, 'index.html'));
});
}