diff options
| author | Dhravya Shah <[email protected]> | 2025-12-23 15:42:57 -0800 |
|---|---|---|
| committer | Dhravya Shah <[email protected]> | 2025-12-23 15:42:57 -0800 |
| commit | c2a5cce02ca2c1dfcf2945aeb80f1885b0ad6e91 (patch) | |
| tree | adad08e6880491c5b88f13e26fcd26be364aeba4 /apps/memory-graph-playground/src/app/page.tsx | |
| parent | added a zero check before calculating maxDps, removed height and width from c... (diff) | |
| download | supermemory-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.tsx | 6 |
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} |