diff --git a/web/src/components/ui/charts/BusterChart.tsx b/web/src/components/ui/charts/BusterChart.tsx index 8fe67a81d..f08270084 100644 --- a/web/src/components/ui/charts/BusterChart.tsx +++ b/web/src/components/ui/charts/BusterChart.tsx @@ -25,7 +25,6 @@ export const BusterChart: React.FC = React.memo( groupByMethod = 'sum', loading = false, className = '', - bordered = true, animate = true, animateLegend = true, id, @@ -153,7 +152,7 @@ export const BusterChart: React.FC = React.memo( return ( - + {SwitchComponent()} diff --git a/web/src/components/ui/charts/interfaces/interfaces.ts b/web/src/components/ui/charts/interfaces/interfaces.ts index 6fdd37b06..0e94c0ab4 100644 --- a/web/src/components/ui/charts/interfaces/interfaces.ts +++ b/web/src/components/ui/charts/interfaces/interfaces.ts @@ -6,7 +6,6 @@ export type BusterChartProps = { groupByMethod?: 'sum' | 'average' | 'count'; loading?: boolean; className?: string; - bordered?: boolean; animate?: boolean; animateLegend?: boolean; id?: string;