From 1f12ef215119d7644596a641913cade18cba6fba Mon Sep 17 00:00:00 2001 From: jeffvli Date: Wed, 14 Jan 2026 21:55:21 -0800 Subject: [PATCH] increase album release section limit to 100 (#1523) --- .../features/artists/components/album-artist-detail-content.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 8371c5f1e..775af96c4 100644 --- a/src/renderer/features/artists/components/album-artist-detail-content.tsx +++ b/src/renderer/features/artists/components/album-artist-detail-content.tsx @@ -740,7 +740,7 @@ interface AlbumSectionProps { title: React.ReactNode | string; } -const MAX_SECTION_CARDS = 20; +const MAX_SECTION_CARDS = 100; const getItemsPerRow = (cq: ReturnType) => { // Match grid carousel breakpoints: is3xl: 8, is2xl: 7, isXl: 6, isLg: 5, isMd: 4, isSm: 3, default: 2