Skip to content

Commit 473d7f1

Browse files
committed
fix(trends): default sort
1 parent 846c952 commit 473d7f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client/src/pages/trends/hooks/useOptions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export default function useOptions() {
88
const { setFocus } = useTrendsContext()
99
const currentModel = searchParams.get("model") || "entity-fishing"
1010
const currentSource = searchParams.get("source") || "publications"
11-
const currentSort = searchParams.get("sort") || "volume-asc"
11+
const currentSort = searchParams.get("sort") || "count-desc"
1212
const normalized = getBooleanParam(searchParams.get("normalized"), false)
1313
const currentPage = Number(searchParams.get("page")) || 1
1414

0 commit comments

Comments
 (0)