Skip to content

Commit

Permalink
Merge pull request #54293 from callstack-internal/fix/53078-keyboard-…
Browse files Browse the repository at this point in the history
…blicks-2

Fix keyboard blinks
  • Loading branch information
MariaHCD authored Dec 20, 2024
2 parents bc956d0 + f7dc051 commit 78337bd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/settings/Profile/DisplayNamePage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ function DisplayNamePage({currentUserPersonalDetails}: DisplayNamePageProps) {
role={CONST.ROLE.PRESENTATION}
defaultValue={currentUserDetails.firstName ?? ''}
spellCheck={false}
isMarkdownEnabled
autoCapitalize="words"
/>
</View>
<View>
Expand All @@ -111,7 +111,7 @@ function DisplayNamePage({currentUserPersonalDetails}: DisplayNamePageProps) {
role={CONST.ROLE.PRESENTATION}
defaultValue={currentUserDetails.lastName ?? ''}
spellCheck={false}
isMarkdownEnabled
autoCapitalize="words"
/>
</View>
</FormProvider>
Expand Down
2 changes: 2 additions & 0 deletions src/pages/settings/Profile/PersonalDetails/LegalNamePage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ function LegalNamePage() {
role={CONST.ROLE.PRESENTATION}
defaultValue={legalFirstName}
spellCheck={false}
autoCapitalize="words"
/>
</View>
<View>
Expand All @@ -121,6 +122,7 @@ function LegalNamePage() {
role={CONST.ROLE.PRESENTATION}
defaultValue={legalLastName}
spellCheck={false}
autoCapitalize="words"
/>
</View>
</FormProvider>
Expand Down

0 comments on commit 78337bd

Please sign in to comment.