aboutsummaryrefslogtreecommitdiff
path: root/apps/memory-graph-playground/src/app/page.tsx
diff options
context:
space:
mode:
authorDhravya Shah <[email protected]>2025-12-23 15:42:57 -0800
committerDhravya Shah <[email protected]>2025-12-23 15:42:57 -0800
commitc2a5cce02ca2c1dfcf2945aeb80f1885b0ad6e91 (patch)
treeadad08e6880491c5b88f13e26fcd26be364aeba4 /apps/memory-graph-playground/src/app/page.tsx
parentadded a zero check before calculating maxDps, removed height and width from c... (diff)
downloadsupermemory-vrupak/main.tar.xz
supermemory-vrupak/main.zip
fix: show all memory relationsvrupak/main
Diffstat (limited to 'apps/memory-graph-playground/src/app/page.tsx')
-rw-r--r--apps/memory-graph-playground/src/app/page.tsx6
1 files changed, 4 insertions, 2 deletions
diff --git a/apps/memory-graph-playground/src/app/page.tsx b/apps/memory-graph-playground/src/app/page.tsx
index 581557b6..f576c546 100644
--- a/apps/memory-graph-playground/src/app/page.tsx
+++ b/apps/memory-graph-playground/src/app/page.tsx
@@ -31,7 +31,9 @@ export default function Home() {
// State for slideshow
const [isSlideshowActive, setIsSlideshowActive] = useState(false)
- const [currentSlideshowNode, setCurrentSlideshowNode] = useState<string | null>(null)
+ const [currentSlideshowNode, setCurrentSlideshowNode] = useState<
+ string | null
+ >(null)
const PAGE_SIZE = 500
@@ -279,7 +281,7 @@ export default function Home() {
hasMore={hasMore}
loadMoreDocuments={loadMoreDocuments}
totalLoaded={documents.length}
- variant="consumer"
+ variant="console"
// Controlled space selection
selectedSpace={selectedSpace}
onSpaceChange={handleSpaceChange}