Skip to content

Commit

Permalink
Fix JSX style with double quotes instead of single
Browse files Browse the repository at this point in the history
  • Loading branch information
neil-marcellini committed Feb 23, 2022
1 parent c7ae399 commit c48ca6c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/components/FullNameInputRow.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ const FullNameInputRow = (props) => {
<View style={styles.flex1}>
<TextInput
label={props.translate('common.firstName')}
name='fname'
name="fname"
value={props.firstName}
errorText={props.firstNameError}
onChangeText={props.onChangeFirstName}
Expand All @@ -58,7 +58,7 @@ const FullNameInputRow = (props) => {
<View style={[styles.flex1, styles.ml2]}>
<TextInput
label={props.translate('common.lastName')}
name='lname'
name="lname"
value={props.lastName}
errorText={props.lastNameError}
onChangeText={props.onChangeLastName}
Expand Down
2 changes: 1 addition & 1 deletion src/pages/RequestCallPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ class RequestCallPage extends Component {
/>
<TextInput
label={this.props.translate('common.phoneNumber')}
name='phone'
name="phone"
autoCorrect={false}
value={this.state.phoneNumber}
placeholder="2109400803"
Expand Down

0 comments on commit c48ca6c

Please sign in to comment.