Add Foundry dev panel

This commit is contained in:
Nathan Flurry 2026-03-12 11:55:25 -07:00
parent 859ad13934
commit f365342dcc
4 changed files with 397 additions and 0 deletions

View file

@ -2,6 +2,7 @@ import { type ReactNode, useEffect } from "react";
import { setFrontendErrorContext } from "@sandbox-agent/foundry-frontend-errors/client";
import type { FoundryBillingPlanId } from "@sandbox-agent/foundry-shared";
import { Navigate, Outlet, createRootRoute, createRoute, createRouter, useRouterState } from "@tanstack/react-router";
import { DevPanel } from "../components/dev-panel";
import { MockLayout } from "../components/mock-layout";
import {
MockAccountSettingsPage,
@ -344,6 +345,7 @@ function RootLayout() {
<>
<RouteContextSync />
<Outlet />
<DevPanel />
</>
);
}