Skip to content

Commit

Permalink
playlist: change sort order
Browse files Browse the repository at this point in the history
  • Loading branch information
rr- committed Aug 7, 2023
1 parent ad9b102 commit e13c28b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/src/components/common/UserSidebar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ const UserSidebar = ({ user }: UserSidebarProps) => {
</Link>
</DefinitionItem>

<DefinitionItem term="Played levels">
<DefinitionItem term="Levels played">
<Link to={`/users/${user.id}/playlist`}>
{user.played_level_count}
</Link>
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/pages/UserPlaylistPage/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const UserPlaylistPageView = ({ user }: UserBasePageChildRenderProps) => {
PlaylistSearchQuery
>({
page: null,
sort: "-created",
sort: "-status",
});
const queryClient = useQueryClient();

Expand Down

0 comments on commit e13c28b

Please sign in to comment.