diff --git a/dashboard/src/App.tsx b/dashboard/src/App.tsx index dc26d7b..e124a11 100644 --- a/dashboard/src/App.tsx +++ b/dashboard/src/App.tsx @@ -1,6 +1,6 @@ import { useMemo, useState } from "react"; import { Clock3, ListChecks } from "lucide-react"; -import { AppHeader, ChecklistDashboard, DashboardError, DifferentialTestingPage, EmptyState, FILTERS, Filters, NewOvenPage, ProjectGroup, RunBurnPage, StreamingDiff } from "@components"; +import { AppHeader, ChecklistDashboard, DashboardError, DifferentialTestingPage, EmptyState, FILTERS, Filters, NewOvenPage, ProjectGroup, RunBurnPage, StreamingDiff, VisualParityPage } from "@components"; import { useDashboardData } from "@hooks"; import { currentSection, filterFromUrl, listHref, selectedBurnlist } from "@lib"; import type { Filter } from "@lib"; @@ -24,8 +24,8 @@ export function App() { return (
-
- {section === "differential-testing" ? : section === "performance-tracing" ? : section === "streaming-diff" ? : section === "new-oven" ? : section === "run-burn" ? : selected ? ( +
+ {section === "differential-testing" ? : section === "performance-tracing" ? : section === "streaming-diff" ? : section === "visual-parity" ? : section === "new-oven" ? : section === "run-burn" ? : selected ? ( error ? : loading && !progress ? : progress ? ( ) : diff --git a/dashboard/src/components/AppHeader/AppHeader.tsx b/dashboard/src/components/AppHeader/AppHeader.tsx index 6d6b21c..80dfe1a 100644 --- a/dashboard/src/components/AppHeader/AppHeader.tsx +++ b/dashboard/src/components/AppHeader/AppHeader.tsx @@ -15,8 +15,9 @@ export function AppHeader({ section }: { section: string }) { {section === "differential-testing" &&
Differential Testing
} {section === "performance-tracing" &&
Performance Tracing
} {section === "streaming-diff" &&
Streaming Diff
} + {section === "visual-parity" &&
Visual Parity
}