diff --git a/backend/routes/notes.routes.js b/backend/routes/notes.routes.js index 5fc6520..13e8247 100644 --- a/backend/routes/notes.routes.js +++ b/backend/routes/notes.routes.js @@ -27,7 +27,6 @@ router.get('/', async (req, res) => { router.post('/cluster', async (req, res) => { try { const notes = await loadNotes(); - console.log('notes returned from loadNotes', notes) const clusters = await clusterNotes(notes); res.json(clusters); } catch (err) {