diff --git a/src/pages/Inventory/sections/LayoutSection.tsx b/src/pages/Inventory/sections/LayoutSection.tsx
index a5996a9..2a16e60 100644
--- a/src/pages/Inventory/sections/LayoutSection.tsx
+++ b/src/pages/Inventory/sections/LayoutSection.tsx
@@ -31,7 +31,7 @@ const SAMPLE_APP_NODES: SidebarTreeNode[] = [
{
id: 'app1',
label: 'cameleer-prod',
- icon: ,
+ icon: ,
badge: '14.3k',
path: '/apps/app1',
starrable: true,
@@ -44,7 +44,7 @@ const SAMPLE_APP_NODES: SidebarTreeNode[] = [
{
id: 'app2',
label: 'cameleer-staging',
- icon: ,
+ icon: ,
badge: '871',
path: '/apps/app2',
starrable: true,
@@ -56,7 +56,7 @@ const SAMPLE_APP_NODES: SidebarTreeNode[] = [
{
id: 'app3',
label: 'cameleer-dev',
- icon: ,
+ icon: ,
badge: '42',
path: '/apps/app3',
starrable: true,
diff --git a/src/pages/RouteDetail/RouteDetail.tsx b/src/pages/RouteDetail/RouteDetail.tsx
index 7c11239..e29a37f 100644
--- a/src/pages/RouteDetail/RouteDetail.tsx
+++ b/src/pages/RouteDetail/RouteDetail.tsx
@@ -4,8 +4,6 @@ import { AlertTriangle } from 'lucide-react'
import styles from './RouteDetail.module.css'
// Layout
-import { AppShell } from '../../design-system/layout/AppShell/AppShell'
-import { Sidebar } from '../../design-system/layout/Sidebar/Sidebar'
import { TopBar } from '../../design-system/layout/TopBar/TopBar'
// Composites
@@ -22,7 +20,6 @@ import { InfoCallout } from '../../design-system/primitives/InfoCallout/InfoCall
// Mock data
import { routes } from '../../mocks/routes'
import { exchanges, type Exchange } from '../../mocks/exchanges'
-import { SIDEBAR_APPS } from '../../mocks/sidebar'
// ─── Helpers ──────────────────────────────────────────────────────────────────
function formatDuration(ms: number): string {
@@ -199,11 +196,7 @@ export function RouteDetail() {
// Not found state
if (!route) {
return (
-
- }
- >
+ <>
Route "{id}" not found in mock data.
-
+ >
)
}
const statusVariant = routeStatusVariant(route.status)
return (
-
- }
- >
+ <>
{/* Top bar */}
-
+ >
)
}