diff --git a/src/components/ai-usage-analytics/ToggleableTrendChart.tsx b/src/components/ai-usage-analytics/ToggleableTrendChart.tsx
index b03d3a77d..3b0f1e7c5 100644
--- a/src/components/ai-usage-analytics/ToggleableTrendChart.tsx
+++ b/src/components/ai-usage-analytics/ToggleableTrendChart.tsx
@@ -3,7 +3,11 @@
import { useState } from "react";
import { cn } from "@app/lib/cn";
import { useTranslations } from "next-intl";
-import { BarChart3, LineChart as LineChartIcon, LoaderIcon } from "lucide-react";
+import {
+ BarChart3,
+ LineChart as LineChartIcon,
+ LoaderIcon
+} from "lucide-react";
import {
Bar,
BarChart,
@@ -63,7 +67,12 @@ export function ToggleableTrendChart(props: ToggleableTrendChartProps) {
const hasData = props.data.length > 0;
return (
-
+
{props.title}
@@ -102,17 +111,23 @@ export function ToggleableTrendChart(props: ToggleableTrendChartProps) {
) : (
{chartType === "bar" ? (
- } />
+
+ }
+ />
- formatDay(payload?.[0]?.payload?.day)
+ formatDay(
+ payload?.[0]?.payload?.day
+ )
}
/>
}
@@ -143,13 +158,19 @@ export function ToggleableTrendChart(props: ToggleableTrendChartProps) {
) : (
- } />
+
+ }
+ />
- formatDay(payload?.[0]?.payload?.day)
+ formatDay(
+ payload?.[0]?.payload?.day
+ )
}
/>
}
diff --git a/src/components/ui/chart.tsx b/src/components/ui/chart.tsx
index 168393b29..ec2e1c880 100644
--- a/src/components/ui/chart.tsx
+++ b/src/components/ui/chart.tsx
@@ -51,7 +51,7 @@ const ChartContainer = React.forwardRef<
data-chart={chartId}
ref={ref}
className={cn(
- "flex aspect-video justify-center text-xs [&_.recharts-cartesian-axis-tick_text]:fill-muted-foreground [&_.recharts-cartesian-grid_line[stroke='#ccc']]:stroke-border/50 [&_.recharts-curve.recharts-tooltip-cursor]:stroke-border [&_.recharts-dot[stroke='#fff']]:stroke-transparent [&_.recharts-layer]:outline-none [&_.recharts-polar-grid_[stroke='#ccc']]:stroke-border [&_.recharts-radial-bar-background-sector]:fill-muted [&_.recharts-rectangle.recharts-tooltip-cursor]:fill-muted [&_.recharts-reference-line_[stroke='#ccc']]:stroke-border [&_.recharts-sector[stroke='#fff']]:stroke-transparent [&_.recharts-sector]:outline-none [&_.recharts-surface]:outline-none",
+ "flex aspect-video w-full min-w-0 justify-center text-xs [&_.recharts-cartesian-axis-tick_text]:fill-muted-foreground [&_.recharts-cartesian-grid_line[stroke='#ccc']]:stroke-border/50 [&_.recharts-curve.recharts-tooltip-cursor]:stroke-border [&_.recharts-dot[stroke='#fff']]:stroke-transparent [&_.recharts-layer]:outline-none [&_.recharts-polar-grid_[stroke='#ccc']]:stroke-border [&_.recharts-radial-bar-background-sector]:fill-muted [&_.recharts-rectangle.recharts-tooltip-cursor]:fill-muted [&_.recharts-reference-line_[stroke='#ccc']]:stroke-border [&_.recharts-sector[stroke='#fff']]:stroke-transparent [&_.recharts-sector]:outline-none [&_.recharts-surface]:outline-none",
className
)}
{...props}