Skip to content

Commit

Permalink
Merge pull request #6114 from Expensify/chirag-pronoun-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
roryabraham authored Oct 29, 2021
2 parents 17aab27 + 9f329ef commit 17b4b05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/settings/Profile/ProfilePage.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ class ProfilePage extends Component {
lastName,
lastNameError: '',
pronouns,
hasSelfSelectedPronouns: pronouns && !pronouns.startsWith(CONST.PRONOUNS.PREFIX),
hasSelfSelectedPronouns: !_.isEmpty(pronouns) && !pronouns.startsWith(CONST.PRONOUNS.PREFIX),
selectedTimezone: lodashGet(timezone, 'selected', CONST.DEFAULT_TIME_ZONE.selected),
isAutomaticTimezone: lodashGet(timezone, 'automatic', CONST.DEFAULT_TIME_ZONE.automatic),
logins: this.getLogins(props.user.loginList),
Expand Down

0 comments on commit 17b4b05

Please sign in to comment.