diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/screens/profile/CaptionScreen.tsx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/screens/profile/CaptionScreen.tsx b/src/screens/profile/CaptionScreen.tsx index 15abe965..fb382e53 100644 --- a/src/screens/profile/CaptionScreen.tsx +++ b/src/screens/profile/CaptionScreen.tsx @@ -120,7 +120,9 @@ const CaptionScreen: React.FC<CaptionScreenProps> = ({route, navigation}) => { onChange={setCaption} partTypes={mentionPartTypes('blue')} /> - <TouchableOpacity style={{width: SCREEN_WIDTH}}> + <TouchableOpacity + style={{width: SCREEN_WIDTH}} + onPress={() => navigation.navigate('TagSelection')}> <Text style={{color: 'white', fontSize: normalize(14)}}> Tag Friends </Text> |