Skip to content

Commit

Permalink
fix: linting
Browse files Browse the repository at this point in the history
  • Loading branch information
Jones-Griffin committed Sep 14, 2024
1 parent 5ae520b commit 275be64
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/@mantine/charts/src/RadarChart/RadarChart.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,9 @@ export interface RadarChartProps
withPolarRadiusAxis?: boolean;

/** Props passed down to recharts Radar component */
radarProps?: ((series: RadarChartSeries) => Partial<Omit<RadarProps, 'ref'>>) | Partial<Omit<RadarProps, 'ref'>>;
radarProps?:
| ((series: RadarChartSeries) => Partial<Omit<RadarProps, 'ref'>>)
| Partial<Omit<RadarProps, 'ref'>>;

/** Props passed down to recharts RadarChart component */
radarChartProps?: React.ComponentPropsWithoutRef<typeof ReChartsRadarChart>;
Expand Down

0 comments on commit 275be64

Please sign in to comment.