From 0c3480324409bcf03fe2bb2b95950b49ee171a2f Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Thu, 10 Oct 2024 06:03:56 +0530 Subject: [PATCH] chore: lint --- server/src/api/record.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/api/record.ts b/server/src/api/record.ts index 11a10dc0..321e2275 100644 --- a/server/src/api/record.ts +++ b/server/src/api/record.ts @@ -30,7 +30,7 @@ const formatRecording = (recordingData: any) => { router.get("/robots", requireAPIKey, async (req: Request, res: Response) => { try { - const robots = await Robot.findAll({ raw: true}); + const robots = await Robot.findAll({ raw: true }); const formattedRecordings = robots.map(formatRecording); const response = {