diff --git a/src/pages/settings/Profile/DisplayNamePage.tsx b/src/pages/settings/Profile/DisplayNamePage.tsx index 10eeeaf06bf5..767b69bbba0c 100644 --- a/src/pages/settings/Profile/DisplayNamePage.tsx +++ b/src/pages/settings/Profile/DisplayNamePage.tsx @@ -98,7 +98,7 @@ function DisplayNamePage({currentUserPersonalDetails}: DisplayNamePageProps) { role={CONST.ROLE.PRESENTATION} defaultValue={currentUserDetails.firstName ?? ''} spellCheck={false} - isMarkdownEnabled + autoCapitalize="words" /> @@ -111,7 +111,7 @@ function DisplayNamePage({currentUserPersonalDetails}: DisplayNamePageProps) { role={CONST.ROLE.PRESENTATION} defaultValue={currentUserDetails.lastName ?? ''} spellCheck={false} - isMarkdownEnabled + autoCapitalize="words" /> diff --git a/src/pages/settings/Profile/PersonalDetails/LegalNamePage.tsx b/src/pages/settings/Profile/PersonalDetails/LegalNamePage.tsx index bb7d3024a0c2..ecb128af497c 100644 --- a/src/pages/settings/Profile/PersonalDetails/LegalNamePage.tsx +++ b/src/pages/settings/Profile/PersonalDetails/LegalNamePage.tsx @@ -109,6 +109,7 @@ function LegalNamePage() { role={CONST.ROLE.PRESENTATION} defaultValue={legalFirstName} spellCheck={false} + autoCapitalize="words" /> @@ -121,6 +122,7 @@ function LegalNamePage() { role={CONST.ROLE.PRESENTATION} defaultValue={legalLastName} spellCheck={false} + autoCapitalize="words" />