feat(renderer): surface MigrationPopup on the dashboard

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Harshit Singh Bhandari 2026-06-26 21:10:36 +05:30
parent 1fdd47a676
commit f848ae0baa
No known key found for this signature in database
1 changed files with 7 additions and 1 deletions

View File

@ -1,6 +1,12 @@
import { createFileRoute } from "@tanstack/react-router";
import { MigrationPopup } from "../components/MigrationPopup";
import { SessionsBoard } from "../components/SessionsBoard";
export const Route = createFileRoute("/_shell/")({
component: () => <SessionsBoard />,
component: () => (
<>
<MigrationPopup />
<SessionsBoard />
</>
),
});