diff options
Diffstat (limited to 'src/routes/profile/ProfileStack.tsx')
-rw-r--r-- | src/routes/profile/ProfileStack.tsx | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/routes/profile/ProfileStack.tsx b/src/routes/profile/ProfileStack.tsx index e7db9f37..bc0a9560 100644 --- a/src/routes/profile/ProfileStack.tsx +++ b/src/routes/profile/ProfileStack.tsx @@ -2,7 +2,7 @@ * Note the name userXId here, it refers to the id of the user being visited */ import {createStackNavigator} from '@react-navigation/stack'; -import {MomentType, ScreenType} from '../../types'; +import {CategorySelectionScreenType, MomentType, ScreenType} from '../../types'; export type ProfileStackParams = { Search: { @@ -41,6 +41,10 @@ export type ProfileStackParams = { userId: string; username: string; }; + CategorySelection: { + categories: Array<string>; + screenType: CategorySelectionScreenType; + }; }; export const ProfileStack = createStackNavigator<ProfileStackParams>(); |