diff --git a/src/renderer/features/home/routes/home-route.tsx b/src/renderer/features/home/routes/home-route.tsx index f548c1da..b3a9563b 100644 --- a/src/renderer/features/home/routes/home-route.tsx +++ b/src/renderer/features/home/routes/home-route.tsx @@ -50,7 +50,7 @@ const HomeRoute = () => { { limit: itemsPerPage, sortBy: AlbumListSort.RECENTLY_PLAYED, - sortOrder: SortOrder.ASC, + sortOrder: SortOrder.DESC, startIndex: pagination.recentlyPlayed * itemsPerPage, }, { @@ -63,7 +63,7 @@ const HomeRoute = () => { { limit: itemsPerPage, sortBy: AlbumListSort.RECENTLY_ADDED, - sortOrder: SortOrder.ASC, + sortOrder: SortOrder.DESC, startIndex: pagination.recentlyAdded * itemsPerPage, }, {