Skip to content

Commit f1ef0e6

Browse files
Anuj AgarwalAnuj Agarwal
authored andcommitted
removed unused entry variable to fix CI/CD issue
1 parent 51a8752 commit f1ef0e6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

frontend/src/components/StatisticsChart.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ export const StatisticsChart = ({ reportData }: { reportData: ReportData }) => {
7878
<ReferenceLine y={meanScore} stroke="#8c8c8c" strokeDasharray="2 2" />
7979

8080
<Scatter data={chartData}>
81-
{chartData.map((entry, index) => (
81+
{chartData.map((_, index) => (
8282
<Cell key={index} fill="grey" />
8383
))}
8484
</Scatter>

0 commit comments

Comments
 (0)