diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-05-17 22:04:01 -0500 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2023-05-17 22:04:01 -0500 |
commit | 998879d6d60b59e65250af395fd6ce389c89189b (patch) | |
tree | f7e5e45fc0113113042891e32cabf3744ff74fd6 /src/view/screens/Settings.tsx | |
parent | 177df363308c09eccc071acfcd0a33d14489ff6f (diff) | |
download | voidsky-998879d6d60b59e65250af395fd6ce389c89189b.tar.zst |
Remove redundant feed-settings page
Diffstat (limited to 'src/view/screens/Settings.tsx')
-rw-r--r-- | src/view/screens/Settings.tsx | 27 |
1 files changed, 13 insertions, 14 deletions
diff --git a/src/view/screens/Settings.tsx b/src/view/screens/Settings.tsx index a919f11b0..3ce41f8c0 100644 --- a/src/view/screens/Settings.tsx +++ b/src/view/screens/Settings.tsx @@ -284,38 +284,37 @@ export const SettingsScreen = withAuthRequired( <View style={styles.spacer20} /> + <Text type="xl-bold" style={[pal.text, styles.heading]}> + Advanced + </Text> <Link - testID="bookmarkedAlgosBtn" + testID="appPasswordBtn" style={[styles.linkCard, pal.view, isSwitching && styles.dimmed]} - accessibilityHint="Custom Algorithms" - accessibilityLabel="Opens screen with all bookmarked custom algorithms" - href="/settings/saved-feeds"> + href="/settings/app-passwords"> <View style={[styles.iconContainer, pal.btn]}> <FontAwesomeIcon - icon="rss" + icon="lock" style={pal.text as FontAwesomeIconStyle} /> </View> <Text type="lg" style={pal.text}> - Custom Algorithms + App passwords </Text> </Link> - - <Text type="xl-bold" style={[pal.text, styles.heading]}> - Advanced - </Text> <Link - testID="appPasswordBtn" + testID="savedFeedsBtn" style={[styles.linkCard, pal.view, isSwitching && styles.dimmed]} - href="/settings/app-passwords"> + accessibilityHint="Saved Feeds" + accessibilityLabel="Opens screen with all saved feeds" + href="/settings/saved-feeds"> <View style={[styles.iconContainer, pal.btn]}> <FontAwesomeIcon - icon="lock" + icon="satellite-dish" style={pal.text as FontAwesomeIconStyle} /> </View> <Text type="lg" style={pal.text}> - App passwords + Saved Feeds </Text> </Link> <TouchableOpacity |