diff options
author | Ivan Chen <ivan@tagg.id> | 2021-03-25 14:44:04 -0400 |
---|---|---|
committer | Ivan Chen <ivan@tagg.id> | 2021-03-25 14:44:04 -0400 |
commit | 76a6ab8c12669865c99e961d93b97613c63da3a5 (patch) | |
tree | 4af6bdbbe4152e90e3d871ffdd4024c2a60e50d8 /src | |
parent | c4047f0bd2293437373c19e84266cd8d010adc3c (diff) |
fixed warning
Diffstat (limited to 'src')
-rw-r--r-- | src/screens/profile/EditProfile.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/screens/profile/EditProfile.tsx b/src/screens/profile/EditProfile.tsx index fc428ee3..8afaeb6d 100644 --- a/src/screens/profile/EditProfile.tsx +++ b/src/screens/profile/EditProfile.tsx @@ -373,7 +373,7 @@ const EditProfile: React.FC<EditProfileProps> = ({route, navigation}) => { .catch((error) => { Alert.alert(error); }); - }, [isCustomGender, form, navigation, userId]); + }, [form, isCustomGender, university_class, userId, navigation]); React.useLayoutEffect(() => { navigation.setOptions({ |