diff options
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 |