diff options
| author | vorahardik7 <[email protected]> | 2025-10-15 19:04:23 -0700 |
|---|---|---|
| committer | vorahardik7 <[email protected]> | 2025-10-15 19:04:23 -0700 |
| commit | 33ee19e7aaaabf902341f3fafc745cc661e9e8a0 (patch) | |
| tree | ab64f4396ef38858957fa222772b5b887794e693 /apps/web/app/(navigation)/layout.tsx | |
| parent | Merge pull request #488 from naman06dev/main (diff) | |
| download | supermemory-33ee19e7aaaabf902341f3fafc745cc661e9e8a0.tar.xz supermemory-33ee19e7aaaabf902341f3fafc745cc661e9e8a0.zip | |
fix: mount graph dialog globally to fix chat page issue
Diffstat (limited to 'apps/web/app/(navigation)/layout.tsx')
| -rw-r--r-- | apps/web/app/(navigation)/layout.tsx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/web/app/(navigation)/layout.tsx b/apps/web/app/(navigation)/layout.tsx index da5a87fb..4c37c10e 100644 --- a/apps/web/app/(navigation)/layout.tsx +++ b/apps/web/app/(navigation)/layout.tsx @@ -1,5 +1,6 @@ "use client" +import { GraphDialog } from "@/components/graph-dialog" import { Header } from "@/components/header" import { AddMemoryView } from "@/components/views/add-memory" import { useEffect, useState } from "react" @@ -52,6 +53,8 @@ export default function NavigationLayout({ onClose={() => setShowAddMemoryView(false)} /> )} + + <GraphDialog /> </div> ) } |