aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Kim <brian@tagg.id>2021-05-12 11:45:49 -0700
committerBrian Kim <brian@tagg.id>2021-05-12 11:45:49 -0700
commit6e76c6b1cd40189bc86659efb5421c31f9d4b600 (patch)
tree2b7aa629828c2228733e8cb4b336e21ca9d15f68
parentb4254a49ad74c4460889e7172ea3575eda8ef556 (diff)
Undid accidental changes to EditProfile.tsx, round 2 electric bugaloo
-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