aboutsummaryrefslogtreecommitdiff
path: root/src/routes/profile/ProfileStack.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/routes/profile/ProfileStack.tsx')
-rw-r--r--src/routes/profile/ProfileStack.tsx6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/routes/profile/ProfileStack.tsx b/src/routes/profile/ProfileStack.tsx
index c1da67c1..63ab9a10 100644
--- a/src/routes/profile/ProfileStack.tsx
+++ b/src/routes/profile/ProfileStack.tsx
@@ -1,10 +1,14 @@
import {createStackNavigator} from '@react-navigation/stack';
export type ProfileStackParams = {
- Profile: undefined;
+ Search: undefined;
+ Profile: {
+ isProfileView: boolean;
+ };
SocialMediaTaggs: {
socialMediaType: string;
socialMediaHandle: string;
+ isProfileView: boolean;
};
CaptionScreen: {title: string; image: object};
};