aboutsummaryrefslogtreecommitdiff
path: root/src/routes
diff options
context:
space:
mode:
Diffstat (limited to 'src/routes')
-rw-r--r--src/routes/main/MainStackNavigator.tsx5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/routes/main/MainStackNavigator.tsx b/src/routes/main/MainStackNavigator.tsx
index e840eb38..05f5138f 100644
--- a/src/routes/main/MainStackNavigator.tsx
+++ b/src/routes/main/MainStackNavigator.tsx
@@ -49,7 +49,9 @@ export type MainStackParams = {
selectedTags?: MomentTagType[];
moment?: MomentType;
};
- ChoosingCategoryScreen: {};
+ ChoosingCategoryScreen: {
+ newCustomCategory: string;
+ };
TagFriendsScreen: {
media: {
uri: string;
@@ -88,6 +90,7 @@ export type MainStackParams = {
};
CreateCustomCategory: {
existingCategories: string[];
+ fromScreen: 'ChoosingCategoryScreen' | 'CategorySelection';
};
Notifications: {
screenType: ScreenType;