From 4bd1647c0eb54706a6cfc86d0492c79be51ca55c Mon Sep 17 00:00:00 2001 From: KS Jannette Date: Thu, 12 Feb 2026 07:38:55 -0500 Subject: [PATCH] clean --- backend/routes/notes.routes.js | 1 - 1 file changed, 1 deletion(-) 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) {