From f733a819bdd8784a6f1216e3c2e2c5489ce4b2bd Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Thu, 10 Oct 2024 04:34:33 +0530 Subject: [PATCH] chire: remove comment --- server/src/routes/storage.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/server/src/routes/storage.ts b/server/src/routes/storage.ts index 3a23be9f..4553624b 100644 --- a/server/src/routes/storage.ts +++ b/server/src/routes/storage.ts @@ -160,7 +160,6 @@ router.put('/runs/:id', requireSignIn, async (req, res) => { router.get('/runs/run/:id', requireSignIn, async (req, res) => { try { console.log(`Params for GET /runs/run/:id`, req.params.id) - // read the run from storage const run = await Run.findOne({ where: { runId: req.params.runId }, raw: true }); if (!run) { return res.status(404).send(null);