fix : improve great move classification
This commit is contained in:
@@ -34,9 +34,7 @@ export const getChessComUserRecentGames = async (
|
||||
}
|
||||
|
||||
const gamesToReturn = games
|
||||
.sort((a, b) => {
|
||||
return b.end_time - a.end_time;
|
||||
})
|
||||
.sort((a, b) => b.end_time - a.end_time)
|
||||
.slice(0, 50);
|
||||
|
||||
return gamesToReturn;
|
||||
|
||||
Reference in New Issue
Block a user