FEAT: Increase pagination limits to improve data display and update version to 1.2.1
This commit is contained in:
@@ -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,
|
||||
});
|
||||
});
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user