Remove usage of toSorted as it is not fully supported (#4168)

This commit is contained in:
Charles Bochet
2024-02-24 12:12:55 +01:00
committed by GitHub
parent 400ac447d8
commit 87f7c75057
6 changed files with 24 additions and 19 deletions

View File

@ -9,7 +9,7 @@ export const makeTimelineActivitiesQueryVariables = ({
return {
filter: {
id: {
in: activityIds.toSorted(sortByAscString),
in: [...activityIds].sort(sortByAscString),
},
},
orderBy: {