Reduce feed page size to 10, update search placeholder

This commit is contained in:
2026-07-06 11:59:56 +02:00
parent c25264c993
commit adca5f071c
2 changed files with 2 additions and 2 deletions
@@ -24,7 +24,7 @@ public class FeedService {
@Inject
DatabaseService db;
public static final int PAGE_SIZE = 20;
public static final int PAGE_SIZE = 10;
public List<ReleaseGroup> getAllFeedEntries() {
var artists = artistService.findAll();