From 957ce77bffbc344b242afd90e9baa2b26359af2b Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Thu, 17 Oct 2024 18:57:03 +0530 Subject: [PATCH] fix: remove raw true --- server/src/routes/auth.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/routes/auth.ts b/server/src/routes/auth.ts index 6ca305bb..07b4a50a 100644 --- a/server/src/routes/auth.ts +++ b/server/src/routes/auth.ts @@ -341,7 +341,7 @@ router.post('/gsheets/update', requireSignIn, async (req, res) => { } try { - let robot = await Robot.findOne({ where: { 'recording_meta.id': robotId }, raw:true }); + let robot = await Robot.findOne({ where: { 'recording_meta.id': robotId } }); if (!robot) { return res.status(404).json({ message: 'Robot not found' });