From 5e5d446659549e7f8e2b4e03f5cb9947ceb87312 Mon Sep 17 00:00:00 2001 From: Soumya Snigdha Kundu Date: Wed, 4 Mar 2026 03:02:58 +0000 Subject: [PATCH] fix: remove dead IS_DEV constant and no-op ternary in memories-grid (#760) --- apps/web/components/memories-grid.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/apps/web/components/memories-grid.tsx b/apps/web/components/memories-grid.tsx index 6a621b4b..5163814a 100644 --- a/apps/web/components/memories-grid.tsx +++ b/apps/web/components/memories-grid.tsx @@ -62,8 +62,7 @@ type OgData = { image?: string } -const IS_DEV = process.env.NODE_ENV === "development" -const PAGE_SIZE = IS_DEV ? 100 : 100 +const PAGE_SIZE = 100 const MAX_TOTAL = 1000 // Discriminated union for masonry items