chore: fix linting issues

This commit is contained in:
nostrdev-com 2025-03-27 11:51:14 +03:00
parent 7195f2fcd3
commit 5cd9fd416d

@ -14,7 +14,6 @@ usersRouter.get('/', async (_req: Request, res: Response) => {
const users = await collections.users?.find({}).toArray()
res.status(200).send(users)
// eslint-disable-next-line @typescript-eslint/no-explicit-any
} catch (error: any) {
res.status(500).send(error.message)
}