Skip to content

Commit

Permalink
fix(lines): revert wrongfully changed name
Browse files Browse the repository at this point in the history
  • Loading branch information
lindtvedtsebastian committed Feb 6, 2024
1 parent e6f8224 commit a4f3e60
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ function TileCard({ bid, tile }: { bid: TBoardID; tile: TTile }) {
.filter((line) => line.transportMode === transportMode)
.sort(sortLineByPublicCode),
}))
.sort((a, b) => b.uniqLines.length - a.uniqLines.length)
.sort((a, b) => b.lines.length - a.lines.length)

return (
<div>
Expand Down

0 comments on commit a4f3e60

Please sign in to comment.