Skip to content

Commit f623c3e

Browse files
dawidclaude
andcommitted
Fix JavaScript syntax error in dashboard server
Remove extra closing parenthesis that was causing SyntaxError: - Change `});` to `}` to properly close getDashboardHTML() function - This was causing the dashboard API to crash on startup Fixes: "SyntaxError: Unexpected token ')'" at line 62 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent e74a608 commit f623c3e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dashboard/api/server.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ function getDashboardHTML() {
5959
</body>
6060
</html>
6161
`;
62-
});
62+
}
6363

6464
// Configuration
6565
const PORT = process.env.DASHBOARD_PORT || 3001; // Dashboard on 3001, MCP on 3000

0 commit comments

Comments
 (0)