diff options
author | Brian Kim <brian@tagg.id> | 2021-05-12 11:45:49 -0700 |
---|---|---|
committer | Brian Kim <brian@tagg.id> | 2021-05-12 11:45:49 -0700 |
commit | 6e76c6b1cd40189bc86659efb5421c31f9d4b600 (patch) | |
tree | 2b7aa629828c2228733e8cb4b336e21ca9d15f68 | |
parent | b4254a49ad74c4460889e7172ea3575eda8ef556 (diff) |
Undid accidental changes to EditProfile.tsx, round 2 electric bugaloo
-rw-r--r-- | src/screens/profile/EditProfile.tsx | 4 |
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 |