Skip to content

Commit

Permalink
Rollback changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Nebyt committed Jan 17, 2022
1 parent 553b708 commit 752af8f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/WalletInit/WalletForm.tsx
Expand Up @@ -54,7 +54,7 @@ export const WalletForm = ({onSubmit}: Props) => {
contentContainerStyle={styles.scrollContentContainer}
testID={'credentialsView'}
>
<TextInput
<WalletNameInput
enablesReturnKeyAutomatically
autoFocus
label={strings.walletNameInputLabel}
Expand All @@ -69,7 +69,7 @@ export const WalletForm = ({onSubmit}: Props) => {

<Spacer />

<TextInput
<PasswordInput
enablesReturnKeyAutomatically
ref={passwordRef}
secureTextEntry
Expand All @@ -88,7 +88,7 @@ export const WalletForm = ({onSubmit}: Props) => {

<Spacer />

<TextInput
<PasswordConfirmationInput
enablesReturnKeyAutomatically
ref={passwordConfirmationRef}
secureTextEntry
Expand Down Expand Up @@ -116,9 +116,9 @@ export const WalletForm = ({onSubmit}: Props) => {
)
}

// const WalletNameInput = TextInput
// const PasswordInput = TextInput
// const PasswordConfirmationInput = TextInput
const WalletNameInput = TextInput
const PasswordInput = TextInput
const PasswordConfirmationInput = TextInput
const Actions = (props) => <View {...props} style={styles.actions} />

const styles = StyleSheet.create({
Expand Down

0 comments on commit 752af8f

Please sign in to comment.