diff --git a/packages/dashboard/src/App.tsx b/packages/dashboard/src/App.tsx index 75fdbb1..d169045 100644 --- a/packages/dashboard/src/App.tsx +++ b/packages/dashboard/src/App.tsx @@ -8,6 +8,7 @@ import NodeInfo from "./components/NodeInfo"; import ChatPanel from "./components/ChatPanel"; import LayerLegend from "./components/LayerLegend"; import LearnPanel from "./components/LearnPanel"; +import PersonaSelector from "./components/PersonaSelector"; function App() { const graph = useDashboardStore((s) => s.graph); @@ -15,6 +16,7 @@ function App() { const tourActive = useDashboardStore((s) => s.tourActive); const startTour = useDashboardStore((s) => s.startTour); const stopTour = useDashboardStore((s) => s.stopTour); + const persona = useDashboardStore((s) => s.persona); useEffect(() => { fetch("/knowledge-graph.json") @@ -31,9 +33,12 @@ function App() {