We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 51a8752 commit f1ef0e6Copy full SHA for f1ef0e6
1 file changed
frontend/src/components/StatisticsChart.tsx
@@ -78,7 +78,7 @@ export const StatisticsChart = ({ reportData }: { reportData: ReportData }) => {
78
<ReferenceLine y={meanScore} stroke="#8c8c8c" strokeDasharray="2 2" />
79
80
<Scatter data={chartData}>
81
- {chartData.map((entry, index) => (
+ {chartData.map((_, index) => (
82
<Cell key={index} fill="grey" />
83
))}
84
</Scatter>
0 commit comments