diff --git a/ui/src/components/MetricCard.tsx b/ui/src/components/MetricCard.tsx index d53b286f..734293d6 100644 --- a/ui/src/components/MetricCard.tsx +++ b/ui/src/components/MetricCard.tsx @@ -16,8 +16,8 @@ export function MetricCard({ icon: Icon, value, label, description, to, onClick const isClickable = !!(to || onClick); const inner = ( - - + +

@@ -40,7 +40,7 @@ export function MetricCard({ icon: Icon, value, label, description, to, onClick if (to) { return ( - + {inner} ); @@ -48,7 +48,7 @@ export function MetricCard({ icon: Icon, value, label, description, to, onClick if (onClick) { return ( -

+
{inner}
);