cleanup
This commit is contained in:
@ -67,9 +67,7 @@ export const columns: ColumnDef<chunithm>[] = [
|
||||
const highScore = a.original.score ?? 0;
|
||||
const lowScore = b.original.score ?? 0;
|
||||
|
||||
if (highScore < lowScore) return 1;
|
||||
if (highScore > lowScore) return -1;
|
||||
return 0;
|
||||
return lowScore - highScore;
|
||||
},
|
||||
},
|
||||
{
|
||||
|
Reference in New Issue
Block a user