Skip to content

Commit 5e5d446

Browse files
authored
fix: remove dead IS_DEV constant and no-op ternary in memories-grid (supermemoryai#760)
1 parent 5d9e142 commit 5e5d446

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

apps/web/components/memories-grid.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,7 @@ type OgData = {
6262
image?: string
6363
}
6464

65-
const IS_DEV = process.env.NODE_ENV === "development"
66-
const PAGE_SIZE = IS_DEV ? 100 : 100
65+
const PAGE_SIZE = 100
6766
const MAX_TOTAL = 1000
6867

6968
// Discriminated union for masonry items

0 commit comments

Comments
 (0)