FEAT: Increase pagination limits to improve data display and update version to 1.2.1

This commit is contained in:
Dries Augustyns
2025-08-22 14:35:05 +02:00
parent 7a047f11d8
commit 4fe90adf1e
3 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -33,8 +33,8 @@ export class ProjectService {
emails: { select: { createdAt: true } },
},
orderBy: [{ createdAt: "desc" }],
take: 20,
skip: (page - 1) * 20,
take: 100,
skip: (page - 1) * 100,
});
});
},