diff --git a/site/src/components/ui/chart.tsx b/site/src/components/ui/chart.tsx index e1b7d4f..87e8af6 100644 --- a/site/src/components/ui/chart.tsx +++ b/site/src/components/ui/chart.tsx @@ -99,6 +99,7 @@ const ChartTooltipContent = React.forwardRef< indicator?: 'line' | 'dot' | 'dashed' nameKey?: string labelKey?: string + unit?: string } >( ( @@ -116,6 +117,7 @@ const ChartTooltipContent = React.forwardRef< color, nameKey, labelKey, + unit, }, ref ) => { @@ -157,7 +159,7 @@ const ChartTooltipContent = React.forwardRef<