diff --git a/src/routes/chats.ts b/src/routes/chats.ts index f970ba4..aacfb60 100644 --- a/src/routes/chats.ts +++ b/src/routes/chats.ts @@ -10,8 +10,6 @@ router.get('/', async (_, res) => { try { let chats = await db.query.chats.findMany(); - /* Reorder the chats (in opposite direction) */ - chats = chats.reverse(); return res.status(200).json({ chats: chats });