From 8b2d162733d11c0705d31977aca101d8b3105124 Mon Sep 17 00:00:00 2001 From: jeffvli Date: Sat, 27 Dec 2025 01:43:48 -0800 Subject: [PATCH] adjust grid column counts based on new breakpoint configuration --- .../components/item-list/item-grid-list/item-grid-list.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/renderer/components/item-list/item-grid-list/item-grid-list.tsx b/src/renderer/components/item-list/item-grid-list/item-grid-list.tsx index 3c616ba78..a28d7001a 100644 --- a/src/renderer/components/item-list/item-grid-list/item-grid-list.tsx +++ b/src/renderer/components/item-list/item-grid-list/item-grid-list.tsx @@ -236,11 +236,11 @@ const createThrottledSetTableMeta = ( let dynamicItemsPerRow = 2; if (is4xl) { - dynamicItemsPerRow = 12; - } else if (is3xl) { dynamicItemsPerRow = 10; - } else if (is2xl) { + } else if (is3xl) { dynamicItemsPerRow = 8; + } else if (is2xl) { + dynamicItemsPerRow = 7; } else if (isXl) { dynamicItemsPerRow = 6; } else if (isLg) {