From 8eb5d34247b8a855255651cf2bb761b13a21649e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cau=C3=AA=20Faleiros?= Date: Wed, 6 May 2026 16:48:31 -0300 Subject: [PATCH] fix: resolve SyntaxError in backend/index.js causing server crash --- backend/index.js | 7 ------- 1 file changed, 7 deletions(-) diff --git a/backend/index.js b/backend/index.js index c1a1de5..2ae0267 100644 --- a/backend/index.js +++ b/backend/index.js @@ -158,13 +158,6 @@ app.post('/api/data', authenticateAPIKey, async (req, res) => { })(); }); -app.listen(PORT, '0.0.0.0', () => { - console.log(`Nexstar Backend running at http://localhost:${PORT}`); - console.log(`Endpoint for n8n: POST http://localhost:${PORT}/api/data`); -}); } - })(); -}); - app.listen(PORT, '0.0.0.0', () => { console.log(`Nexstar Backend running at http://localhost:${PORT}`); console.log(`Endpoint for n8n: POST http://localhost:${PORT}/api/data`);