From 7d2344dc8506b7b522931dd7cb151e440398f92d Mon Sep 17 00:00:00 2001 From: ItzCrazyKns Date: Sat, 29 Jun 2024 11:11:10 +0530 Subject: [PATCH] feat(chats): remove comment --- src/routes/chats.ts | 2 -- 1 file changed, 2 deletions(-) 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 });