diff options
Diffstat (limited to 'src/Navigation.tsx')
-rw-r--r-- | src/Navigation.tsx | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/Navigation.tsx b/src/Navigation.tsx index ea36b0f20..d84167d63 100644 --- a/src/Navigation.tsx +++ b/src/Navigation.tsx @@ -40,7 +40,8 @@ import {SettingsScreen} from './view/screens/Settings' import {ProfileScreen} from './view/screens/Profile' import {ProfileFollowersScreen} from './view/screens/ProfileFollowers' import {ProfileFollowsScreen} from './view/screens/ProfileFollows' -import {ProfileCustomFeed} from './view/screens/ProfileCustomFeed' +import {CustomFeedScreen} from './view/screens/CustomFeed' +import {CustomFeedLikedByScreen} from './view/screens/CustomFeedLikedBy' import {ProfileListScreen} from './view/screens/ProfileList' import {PostThreadScreen} from './view/screens/PostThread' import {PostLikedByScreen} from './view/screens/PostLikedBy' @@ -126,7 +127,6 @@ function commonScreens(Stack: typeof HomeTab, unreadCountLabel?: string) { title: title(`People followed by @${route.params.name}`), })} /> - <Stack.Screen name="ProfileCustomFeed" component={ProfileCustomFeed} /> <Stack.Screen name="ProfileList" component={ProfileListScreen} @@ -147,6 +147,11 @@ function commonScreens(Stack: typeof HomeTab, unreadCountLabel?: string) { component={PostRepostedByScreen} options={({route}) => ({title: title(`Post by @${route.params.name}`)})} /> + <Stack.Screen name="CustomFeed" component={CustomFeedScreen} /> + <Stack.Screen + name="CustomFeedLikedBy" + component={CustomFeedLikedByScreen} + /> <Stack.Screen name="Debug" component={DebugScreen} |