aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/screens/suggestedPeopleOnboarding/SuggestedPeopleUploadPictureScreen.tsx8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/screens/suggestedPeopleOnboarding/SuggestedPeopleUploadPictureScreen.tsx b/src/screens/suggestedPeopleOnboarding/SuggestedPeopleUploadPictureScreen.tsx
index aba4d4de..186f115f 100644
--- a/src/screens/suggestedPeopleOnboarding/SuggestedPeopleUploadPictureScreen.tsx
+++ b/src/screens/suggestedPeopleOnboarding/SuggestedPeopleUploadPictureScreen.tsx
@@ -59,12 +59,12 @@ const SuggestedPeopleUploadPictureScreen: React.FC = () => {
{loading && <TaggLoadingIndicator fullscreen />}
<StatusBar barStyle={'light-content'} />
<SafeAreaView style={styles.container}>
- <Text style={styles.title}>PICTURE</Text>
+ <Text style={styles.title}>PHOTO</Text>
{image ? (
- <Text style={styles.body}>Tap again to choose another picture</Text>
+ <Text style={styles.body}>Tap again to choose another photo</Text>
) : (
<Text style={styles.body}>
- Upload a picture, this is what other users will see
+ Upload a photo, this is what other users will see
</Text>
)}
{image ? (
@@ -88,7 +88,7 @@ const SuggestedPeopleUploadPictureScreen: React.FC = () => {
style={styles.images}
source={require('../../assets/images/images.png')}
/>
- <Text style={styles.body}>Upload Picture</Text>
+ <Text style={styles.body}>Upload Photo</Text>
</ImageBackground>
</TouchableOpacity>
)}