diff options
author | dan <dan.abramov@gmail.com> | 2024-11-23 03:27:17 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-23 03:27:17 +0000 |
commit | 631277dc3d8d666f09e86bd390c90239738853c9 (patch) | |
tree | d78ac5c4a960512cd209824d2c2e7a9fc91a31e9 /src/state/queries/preferences/const.ts | |
parent | ac5b2cf31f2bb45f1bf8a180705249d3cce8017d (diff) | |
download | voidsky-631277dc3d8d666f09e86bd390c90239738853c9.tar.zst |
Add a hotness thread sort (#6649)
* Add a hotness thread sort * Bump @atproto/api
Diffstat (limited to 'src/state/queries/preferences/const.ts')
-rw-r--r-- | src/state/queries/preferences/const.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/state/queries/preferences/const.ts b/src/state/queries/preferences/const.ts index e07f40ec5..549f7ce29 100644 --- a/src/state/queries/preferences/const.ts +++ b/src/state/queries/preferences/const.ts @@ -15,7 +15,7 @@ export const DEFAULT_HOME_FEED_PREFS: UsePreferencesQueryResponse['feedViewPrefs } export const DEFAULT_THREAD_VIEW_PREFS: ThreadViewPreferences = { - sort: 'newest', + sort: 'hotness', prioritizeFollowedUsers: true, lab_treeViewEnabled: false, } |