diff options
| author | Shravya Ramesh <shravs1208@gmail.com> | 2021-05-20 14:00:28 -0700 |
|---|---|---|
| committer | Shravya Ramesh <shravs1208@gmail.com> | 2021-05-20 17:58:15 -0700 |
| commit | b8167487f9b069262459efd81b8860ddf615df13 (patch) | |
| tree | 45720fcbbfdd9f287a9f8083d24afd4a5506ae60 /src/screens/profile | |
| parent | 161e78651737208ddfb898f9fbf5250d8debf061 (diff) | |
Change screen name
Diffstat (limited to 'src/screens/profile')
| -rw-r--r-- | src/screens/profile/CaptionScreen.tsx | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/screens/profile/CaptionScreen.tsx b/src/screens/profile/CaptionScreen.tsx index bc7c9ed0..4fa81f8c 100644 --- a/src/screens/profile/CaptionScreen.tsx +++ b/src/screens/profile/CaptionScreen.tsx @@ -126,17 +126,15 @@ const CaptionScreen: React.FC<CaptionScreenProps> = ({route, navigation}) => { onChange={setCaption} partTypes={mentionPartTypes('blue')} /> + {/* TODO: Add tag friends component */} <TouchableOpacity style={{width: SCREEN_WIDTH}} onPress={() => - navigation.navigate('TagSelection', { + navigation.navigate('TagSelectionScreen', { selectedUsers: taggedUsers, }) }> - {/* TODO: Add tag friends component */} - <Text style={{color: 'white', fontSize: normalize(14)}}> - Tag Friends - </Text> + <Text style={styles.tagFriendsTitle}>Tag Friends</Text> </TouchableOpacity> {/* TODO: Display tagged friends component */} </View> |
