From f848ae0baa61829b20fcd67bc79caa1d658838bb Mon Sep 17 00:00:00 2001 From: Harshit Singh Bhandari Date: Fri, 26 Jun 2026 21:10:36 +0530 Subject: [PATCH] feat(renderer): surface MigrationPopup on the dashboard Co-Authored-By: Claude Opus 4.8 --- frontend/src/renderer/routes/_shell.index.tsx | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/frontend/src/renderer/routes/_shell.index.tsx b/frontend/src/renderer/routes/_shell.index.tsx index 6bfeef7fc..409a53636 100644 --- a/frontend/src/renderer/routes/_shell.index.tsx +++ b/frontend/src/renderer/routes/_shell.index.tsx @@ -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: () => , + component: () => ( + <> + + + + ), });