diff --git a/app/views/ProfileView/index.tsx b/app/views/ProfileView/index.tsx index e5206058ea5..9156ccac268 100644 --- a/app/views/ProfileView/index.tsx +++ b/app/views/ProfileView/index.tsx @@ -282,10 +282,20 @@ const ProfileView = ({ navigation }: IProfileViewProps): React.ReactElement => { useFocusEffect( useCallback(() => { - reset(); - }, []) + reset({ + name: user?.name as string, + username: user?.username, + email: user?.emails?.[0]?.address || null, + currentPassword: null, + bio: user?.bio, + nickname: user?.nickname, + saving: false + }); + }, [user?.name, user?.username, user?.emails, user?.bio, user?.nickname, reset]) ); + + return (