diff options
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} |