feat(renderer): surface MigrationPopup on the dashboard
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
parent
1fdd47a676
commit
f848ae0baa
|
|
@ -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 />
|
||||
</>
|
||||
),
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in New Issue