This commit is contained in:
gpt-engineer-app[bot]
2026-01-06 15:39:14 +00:00
parent 490afee707
commit 0364b8e6b9
2 changed files with 271 additions and 0 deletions
+4
View File
@@ -33,6 +33,7 @@ import OrgAuditPage from "@/pages/org/OrgAuditPage";
import OIDCClientsPage from "@/pages/org/OIDCClientsPage";
import NotFound from "@/pages/NotFound";
import ApiDevTools from "@/components/dev/ApiDevTools";
const queryClient = new QueryClient();
@@ -89,6 +90,9 @@ function AppRoutes() {
{/* Catch-all */}
<Route path="*" element={<NotFound />} />
</Routes>
{/* Dev tools - only shown in development */}
<ApiDevTools />
</AuthProvider>
);
}