From c00ff4649d49f48d500dd443f55bd8fc18799021 Mon Sep 17 00:00:00 2001 From: Hans Date: Fri, 25 Aug 2023 06:33:46 +0700 Subject: [PATCH] Fix: Inconsistent auto capitalize between legal name page and display name page. --- src/pages/settings/Profile/DisplayNamePage.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/pages/settings/Profile/DisplayNamePage.js b/src/pages/settings/Profile/DisplayNamePage.js index 31ec955ed0c6..d93eeed2689c 100644 --- a/src/pages/settings/Profile/DisplayNamePage.js +++ b/src/pages/settings/Profile/DisplayNamePage.js @@ -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} /> @@ -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} />