From fd90723902a0d068a3f92553132b31b31ca81af9 Mon Sep 17 00:00:00 2001 From: Dotta Date: Tue, 3 Mar 2026 12:03:23 -0600 Subject: [PATCH] ui: persist onboarding wizard across route redirects --- ui/src/App.tsx | 48 +++++++++++++++++++----------------- ui/src/components/Layout.tsx | 2 -- 2 files changed, 25 insertions(+), 25 deletions(-) diff --git a/ui/src/App.tsx b/ui/src/App.tsx index 019ed3b5..02baefb6 100644 --- a/ui/src/App.tsx +++ b/ui/src/App.tsx @@ -196,36 +196,38 @@ function NoCompaniesStartPage({ autoOpen = true }: { autoOpen?: boolean }) { - ); } export function App() { return ( - - } /> - } /> - } /> + <> + + } /> + } /> + } /> - }> - } /> - } /> - } /> - } /> - } /> - } /> - } /> - } /> - } /> - } /> - } /> - } /> - } /> - }> - {boardRoutes()} + }> + } /> + } /> + } /> + } /> + } /> + } /> + } /> + } /> + } /> + } /> + } /> + } /> + } /> + }> + {boardRoutes()} + - - + + + ); } diff --git a/ui/src/components/Layout.tsx b/ui/src/components/Layout.tsx index 58546c99..471d902b 100644 --- a/ui/src/components/Layout.tsx +++ b/ui/src/components/Layout.tsx @@ -12,7 +12,6 @@ import { NewIssueDialog } from "./NewIssueDialog"; import { NewProjectDialog } from "./NewProjectDialog"; import { NewGoalDialog } from "./NewGoalDialog"; import { NewAgentDialog } from "./NewAgentDialog"; -import { OnboardingWizard } from "./OnboardingWizard"; import { ToastViewport } from "./ToastViewport"; import { MobileBottomNav } from "./MobileBottomNav"; import { useDialog } from "../context/DialogContext"; @@ -296,7 +295,6 @@ export function Layout() { - );