Update AdminReportController

This commit is contained in:
Daniel Supernault 2024-10-18 03:54:00 -06:00
parent 1a972e8ddf
commit ed9f2fbb09
No known key found for this signature in database
GPG key ID: 23740873EE6F76A1

View file

@ -1573,7 +1573,7 @@ trait AdminReportController
->where('profiles.username', 'LIKE', $query)
->select('moderated_profiles.*', 'profiles.username')
->orderByDesc('moderated_profiles.id')
->cursorPaginate(5);
->cursorPaginate(10);
return AdminModeratedProfileResource::collection($profiles);
}