Skip to content

Commit 1c23f64

Browse files
committed
2 parents 087e175 + ed0e2b0 commit 1c23f64

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/components/MatrixPlot.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ const MatrixPlot = ({ matrixData, labelFontSize, title = "Matrix", subtitle = ""
185185

186186
return { col, avgScore };
187187
});
188-
// Step 3: Sort columns by avgScore descending
188+
// Sort columns by avgScore descending
189189
const sortedDimensions = columnScores
190190
.sort((a, b) => b.avgScore - a.avgScore)
191191
// .sort((a, b) => a.avgScore - b.avgScore)

0 commit comments

Comments
 (0)