adjust grid column counts based on new breakpoint configuration

This commit is contained in:
jeffvli
2025-12-27 01:43:48 -08:00
parent cc76c9f31e
commit 8b2d162733
@@ -236,11 +236,11 @@ const createThrottledSetTableMeta = (
let dynamicItemsPerRow = 2; let dynamicItemsPerRow = 2;
if (is4xl) { if (is4xl) {
dynamicItemsPerRow = 12;
} else if (is3xl) {
dynamicItemsPerRow = 10; dynamicItemsPerRow = 10;
} else if (is2xl) { } else if (is3xl) {
dynamicItemsPerRow = 8; dynamicItemsPerRow = 8;
} else if (is2xl) {
dynamicItemsPerRow = 7;
} else if (isXl) { } else if (isXl) {
dynamicItemsPerRow = 6; dynamicItemsPerRow = 6;
} else if (isLg) { } else if (isLg) {