From f577c004222a52f608b884653a2083baba332da7 Mon Sep 17 00:00:00 2001 From: CJ <38697367+imisshtml@users.noreply.github.com> Date: Thu, 21 Nov 2019 20:02:42 -0500 Subject: [PATCH] MM-20201 Fixed asterisk on Nickname (#3588) * MM-20201 Fixed asterisk on Nickname Added optional prop to the Nickname field, which removes the asterisk * MM-20201 Updated Position field also Added optional prop to position field. --- app/screens/edit_profile/edit_profile.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/screens/edit_profile/edit_profile.js b/app/screens/edit_profile/edit_profile.js index ed623ede3..be12a09d6 100644 --- a/app/screens/edit_profile/edit_profile.js +++ b/app/screens/edit_profile/edit_profile.js @@ -470,6 +470,7 @@ export default class EditProfile extends PureComponent { theme={theme} value={nickname} isLandscape={isLandscape} + optional={true} /> ); }; @@ -493,6 +494,7 @@ export default class EditProfile extends PureComponent { theme={theme} value={position} isLandscape={isLandscape} + optional={true} /> ); };