Skip to content

Commit 125c3e1

Browse files
committed
feat: update PodcastsHeader to set default sort order for channel types
1 parent e8816b9 commit 125c3e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/podcasts/PodcastsHeader.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ const PodcastsHeader: React.FC = () => {
4646
if (value === "all" || value === "category") {
4747
setQueryParams({ ...queryParams, type: value, sort: "top" });
4848
} else {
49-
setQueryParams({ ...queryParams, type: value });
49+
setQueryParams({ ...queryParams, type: value, sort: "alphabetical" });
5050
}
5151
}
5252
}}

0 commit comments

Comments
 (0)