From 7a291120c7589c6eed4c5601f67d7bf8aeabeb7c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cau=C3=AA=20Faleiros?= Date: Mon, 4 May 2026 15:50:59 -0300 Subject: [PATCH] fix: resolve syntax error in backend console.log --- backend/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/index.js b/backend/index.js index eb93c32..beba75e 100644 --- a/backend/index.js +++ b/backend/index.js @@ -152,6 +152,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\`); + console.log(`Nexstar Backend running at http://localhost:${PORT}`); + console.log(`Endpoint for n8n: POST http://localhost:${PORT}/api/data`); }); \ No newline at end of file