Fix order for recently played and recently added

This commit is contained in:
jeffvli 2022-12-24 21:09:46 -08:00
parent d203d287df
commit 6d037e4760

View File

@ -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,
},
{