mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-08-28 05:25:33 +00:00
fix: remove dead IS_DEV constant and no-op ternary in memories-grid (#760)
This commit is contained in:
parent
5d9e142596
commit
5e5d446659
1 changed files with 1 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue