feat(chats): remove comment

This commit is contained in:
ItzCrazyKns 2024-06-29 11:11:10 +05:30
parent 799f4d6aee
commit 7d2344dc85
No known key found for this signature in database
GPG Key ID: 8162927C7CCE3065
1 changed files with 0 additions and 2 deletions

View File

@ -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 });