From c2a5cce02ca2c1dfcf2945aeb80f1885b0ad6e91 Mon Sep 17 00:00:00 2001 From: Dhravya Shah Date: Tue, 23 Dec 2025 15:42:57 -0800 Subject: fix: show all memory relations --- apps/memory-graph-playground/src/app/page.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'apps') 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(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} -- cgit v1.2.3