Skip to content

Commit 77ea362

Browse files
committed
Set page size limit back to 3 (4 is ugly)
1 parent 7917b01 commit 77ea362

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backend/src/plugin/moderation/command/case/caseList.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export default defineCommand({
3535
await respondWithPaginator<CaseInfo, number>(
3636
context,
3737
{
38-
pageSize: args.compact ? 16 : 4,
38+
pageSize: args.compact ? 16 : 3,
3939
getKey: entry => entry.number,
4040
lookUp: (context, query) => lookUpCases(context, query, args.actorID, args.targetID),
4141
render: cases => renderCases(cases, args.compact ?? false),

0 commit comments

Comments
 (0)