aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Chen <ivan@tagg.id>2021-02-10 16:05:09 -0500
committerIvan Chen <ivan@tagg.id>2021-02-11 17:47:30 -0500
commit5684cce71cb53e0f2aff126d734a154f58dd1e9d (patch)
tree481b4bc1b35ecd21ab67804ac1a7fe231498be5e
parent12c82e4b7095d088d12b8b96a5b99b161191228c (diff)
picture -> photo
-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>
)}