This commit is contained in:
KS Jannette
2026-02-12 07:38:55 -05:00
parent 8e35b711f4
commit 4bd1647c0e

View File

@@ -27,7 +27,6 @@ router.get('/', async (req, res) => {
router.post('/cluster', async (req, res) => { router.post('/cluster', async (req, res) => {
try { try {
const notes = await loadNotes(); const notes = await loadNotes();
console.log('notes returned from loadNotes', notes)
const clusters = await clusterNotes(notes); const clusters = await clusterNotes(notes);
res.json(clusters); res.json(clusters);
} catch (err) { } catch (err) {