diff options
author | dan <dan.abramov@gmail.com> | 2024-03-06 17:27:59 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-06 17:27:59 +0000 |
commit | 5b8d116e335bd7574928485adc1d4e9cf5ee0564 (patch) | |
tree | dee024ae5e9ff872ad338b3e7aacd1906a604fa9 /src | |
parent | 2e0f8064411cc8d06013276353ce72ac8d9a0e2b (diff) | |
download | voidsky-5b8d116e335bd7574928485adc1d4e9cf5ee0564.tar.zst |
By default, hide replies to people you don't follow in the Following feed (#3124)
* Show replies from followed by default * Update @atproto/api
Diffstat (limited to 'src')
-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 25d284998..53c9e482a 100644 --- a/src/state/queries/preferences/const.ts +++ b/src/state/queries/preferences/const.ts @@ -7,7 +7,7 @@ import {DEFAULT_LOGGED_OUT_LABEL_PREFERENCES} from '#/state/queries/preferences/ export const DEFAULT_HOME_FEED_PREFS: UsePreferencesQueryResponse['feedViewPrefs'] = { hideReplies: false, - hideRepliesByUnfollowed: false, + hideRepliesByUnfollowed: true, hideRepliesByLikeCount: 0, hideReposts: false, hideQuotePosts: false, |