Skip to content

Commit

Permalink
Merge pull request #25911 from hungvu193/fix-24155
Browse files Browse the repository at this point in the history
Fix: Inconsistent auto capitalize between legal name page and display name page.
  • Loading branch information
aldo-expensify authored Aug 25, 2023
2 parents 23b1c65 + c00ff46 commit 252cc24
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/pages/settings/Profile/DisplayNamePage.js
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,6 @@ function DisplayNamePage(props) {
accessibilityRole={CONST.ACCESSIBILITY_ROLE.TEXT}
defaultValue={lodashGet(currentUserDetails, 'firstName', '')}
maxLength={CONST.DISPLAY_NAME.MAX_LENGTH}
autoCapitalize="words"
spellCheck={false}
/>
</View>
Expand All @@ -105,7 +104,6 @@ function DisplayNamePage(props) {
accessibilityRole={CONST.ACCESSIBILITY_ROLE.TEXT}
defaultValue={lodashGet(currentUserDetails, 'lastName', '')}
maxLength={CONST.DISPLAY_NAME.MAX_LENGTH}
autoCapitalize="words"
spellCheck={false}
/>
</View>
Expand Down

0 comments on commit 252cc24

Please sign in to comment.