From dce80be0759d9c3fbffd881f3cb88476db2b7fc0 Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Tue, 27 Jun 2023 15:00:00 -0500 Subject: Fix copy and dark mode styles in the home feed preferences (#915) --- src/view/com/modals/PreferencesHomeFeed.tsx | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) (limited to 'src') diff --git a/src/view/com/modals/PreferencesHomeFeed.tsx b/src/view/com/modals/PreferencesHomeFeed.tsx index 14bf01e7d..15f7625b5 100644 --- a/src/view/com/modals/PreferencesHomeFeed.tsx +++ b/src/view/com/modals/PreferencesHomeFeed.tsx @@ -14,14 +14,15 @@ export const snapPoints = ['90%'] function RepliesThresholdInput({enabled}: {enabled: boolean}) { const store = useStores() + const pal = usePalette('default') const [value, setValue] = useState(store.preferences.homeFeedRepliesThreshold) return ( - + {value === 0 ? `Show all replies` - : `Show replies with greater than ${value} ${ + : `Show replies with at least ${value} ${ value > 1 ? `likes` : `like` }`} @@ -61,11 +62,11 @@ export const Component = observer(function Component() { - - + + Show Replies - + Adjust the number of likes a reply must have to be shown in your feed. @@ -81,12 +82,12 @@ export const Component = observer(function Component() { /> - - + + Show Reposts - - Disable this setting to hide all reposts from your feed. + + Set this setting to "No" to hide all reposts from your feed. - - + + Show Quote Posts - - Disable this setting to hide all quote posts from your feed. + + Set this setting to "No" to hide all quote posts from your feed. Reposts will still be visible.