Skip to content

Commit

Permalink
views/Send: disable auto capitalization on input forms
Browse files Browse the repository at this point in the history
  • Loading branch information
kaloudis committed Mar 13, 2023
1 parent 57a18d9 commit 3edb711
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions views/Send.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -475,6 +475,7 @@ export default class Send extends React.Component<SendProps, SendState> {
}}
style={styles.textInput}
autoCorrect={false}
autoCapitalize="none"
/>
{!!error_msg && !!destination && (
<View style={{ paddingTop: 10, paddingBottom: 10 }}>
Expand Down Expand Up @@ -741,6 +742,7 @@ export default class Send extends React.Component<SendProps, SendState> {
})
}
style={styles.textInput}
autoCapitalize="none"
/>
<Text
style={{
Expand Down

0 comments on commit 3edb711

Please sign in to comment.