From bd9ef281555c6c2c283e5f91cda909aa1fa6b467 Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Sun, 9 Jun 2024 00:46:59 +0530 Subject: [PATCH] chore: lint --- server/src/routes/workflow.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/src/routes/workflow.ts b/server/src/routes/workflow.ts index 5efb0a1e..73d8f490 100644 --- a/server/src/routes/workflow.ts +++ b/server/src/routes/workflow.ts @@ -13,7 +13,7 @@ export const router = Router(); * Logs information about workflow API. */ router.all('/', (req, res, next) => { - logger.log('debug',`The workflow API was invoked: ${req.url}`) + logger.log('debug', `The workflow API was invoked: ${req.url}`) next() // pass control to the next handler }) @@ -116,7 +116,7 @@ router.put('/:browserId/:fileName', async (req, res) => { } return res.send(null); } catch (e) { - const {message} = e as Error; + const { message } = e as Error; logger.log('info', `Error while reading a recording with name: ${req.params.fileName}.waw.json`); return res.send(null); }