From e618ac759012f8547870d2ca817d99db2dc65bfa Mon Sep 17 00:00:00 2001 From: jeffvli Date: Sat, 29 Jul 2023 10:55:48 -0700 Subject: [PATCH] Re-add limits to list item queries --- .../artists/components/album-artist-detail-content.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/renderer/features/artists/components/album-artist-detail-content.tsx b/src/renderer/features/artists/components/album-artist-detail-content.tsx index 95835d90..455e69e7 100644 --- a/src/renderer/features/artists/components/album-artist-detail-content.tsx +++ b/src/renderer/features/artists/components/album-artist-detail-content.tsx @@ -100,7 +100,7 @@ export const AlbumArtistDetailContent = ({ background }: AlbumArtistDetailConten : undefined), }, }, - // limit: 10, + limit: 15, sortBy: AlbumListSort.RELEASE_DATE, sortOrder: SortOrder.DESC, startIndex: 0, @@ -122,7 +122,7 @@ export const AlbumArtistDetailContent = ({ background }: AlbumArtistDetailConten : undefined), }, }, - // limit: 10, + limit: 15, sortBy: AlbumListSort.RELEASE_DATE, sortOrder: SortOrder.DESC, startIndex: 0,