Skip to content

Commit

Permalink
fix: order
Browse files Browse the repository at this point in the history
  • Loading branch information
nicoalee committed Jan 23, 2025
1 parent 5392d03 commit 29147ba
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ const DisplayMetaAnalysisResults: React.FC<{
if (segmentA.value === segmentB.value) continue;
return segmentA.value.localeCompare(segmentB.value);
} else {
return orderA - orderB;
return orderB - orderA;
}
}
return 0;
Expand Down

0 comments on commit 29147ba

Please sign in to comment.