Skip to content

Commit a4c5525

Browse files
committed
fix(usage): remove pie chart padding and stroke to eliminate gaps
1 parent 4f5662d commit a4c5525

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

frontend/src/pages/Usage.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -289,9 +289,9 @@ function ModelSharePie({ stats }: { stats: UsageModelStat[] }) {
289289
cy="50%"
290290
innerRadius="54%"
291291
outerRadius="78%"
292-
paddingAngle={2}
293-
stroke="var(--color-card)"
294-
strokeWidth={2}
292+
paddingAngle={0}
293+
stroke="none"
294+
strokeWidth={0}
295295
>
296296
{pieData.map((_, index) => (
297297
<Cell key={index} fill={modelPieColors[index % modelPieColors.length]} />

0 commit comments

Comments
 (0)