mirror of https://git.lenooby09.tech/LeNooby09/social-app.git
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add to settings

+14
+14
src/view/screens/Settings/index.tsx
··· 288 288 navigation.navigate('DebugMod') 289 289 }, [navigation]) 290 290 291 + const onPressDebugAppcom = React.useCallback(() => { 292 + navigation.navigate('DebugAppcom') 293 + }, [navigation]) 294 + 291 295 const onPressSavedFeeds = React.useCallback(() => { 292 296 navigation.navigate('SavedFeeds') 293 297 }, [navigation]) ··· 872 876 accessibilityHint={_(msg`Opens the storybook page`)}> 873 877 <Text type="lg" style={pal.text}> 874 878 <Trans>Debug Moderation</Trans> 879 + </Text> 880 + </TouchableOpacity> 881 + <TouchableOpacity 882 + style={[pal.view, styles.linkCardNoIcon]} 883 + onPress={onPressDebugAppcom} 884 + accessibilityRole="button" 885 + accessibilityLabel={_(msg`Open storybook page`)} 886 + accessibilityHint={_(msg`Opens the storybook page`)}> 887 + <Text type="lg" style={pal.text}> 888 + <Trans>Debug Appcom</Trans> 875 889 </Text> 876 890 </TouchableOpacity> 877 891 <TouchableOpacity