From 996db6d4f164eb46168c61dd7d768b39f3ca3e5e Mon Sep 17 00:00:00 2001 From: Storme-bit Date: Tue, 14 Apr 2026 01:58:08 -0700 Subject: [PATCH] chat sessions in project view --- packages/orchestration-service/src/routes/projects.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/packages/orchestration-service/src/routes/projects.js b/packages/orchestration-service/src/routes/projects.js index 8559457..c77a456 100644 --- a/packages/orchestration-service/src/routes/projects.js +++ b/packages/orchestration-service/src/routes/projects.js @@ -22,11 +22,11 @@ router.post('/', async (req, res) => { }); router.patch('/:id', async (req, res) => { - try { - res.json(await memory.updateProject(req.params.id, req.body)); - } catch (err) { - res.status(500).json({ error: err.message }); - } + try { + res.json(await memory.updateProject(req.params.id, req.body)); + } catch (err) { + res.status(500).json({ error: err.message }); + } }); router.delete('/:id', async (req, res) => {