aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/screens/profile/EditProfile.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/screens/profile/EditProfile.tsx b/src/screens/profile/EditProfile.tsx
index dd491f81..26802e45 100644
--- a/src/screens/profile/EditProfile.tsx
+++ b/src/screens/profile/EditProfile.tsx
@@ -114,7 +114,7 @@ const EditProfile: React.FC<EditProfileProps> = ({route, navigation}) => {
<TouchableOpacity
accessible={true}
accessibilityLabel="ADD HEADER IMAGE"
- onPress={() => goToGalleryLargePic()}
+ onPress={goToGalleryLargePic}
style={styles.largeProfileUploader}>
{form.largePic ? (
<Image
@@ -134,7 +134,7 @@ const EditProfile: React.FC<EditProfileProps> = ({route, navigation}) => {
<TouchableOpacity
accessible={true}
accessibilityLabel="ADD PROFILE PICTURE"
- onPress={() => goToGallerySmallPic()}
+ onPress={goToGallerySmallPic}
style={styles.smallProfileUploader}>
{form.smallPic ? (
<Image