Skip to content

Commit

Permalink
Set a better prompt on passcode unlock screen
Browse files Browse the repository at this point in the history
  • Loading branch information
teh-username committed Mar 29, 2018
1 parent 6db8fe9 commit 8a60b64
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/components/PasscodeAuth.js
Expand Up @@ -38,8 +38,8 @@ class PasscodeAuth extends React.Component {
/>
{error ? <FormValidationMessage>{error}</FormValidationMessage> : null}
<Button
title="Set Passcode"
icon={{ name: 'add' }}
title="Enter Passcode"
icon={{ name: 'lock-open' }}
onPress={this.handleFormSubmit}
buttonStyle={styles.buttonStyle}
disabled={!passcode}
Expand Down
8 changes: 4 additions & 4 deletions src/components/__snapshots__/PasscodeAuth.test.js.snap
Expand Up @@ -18,11 +18,11 @@ exports[`PasscodeAuth component test should render as expected 1`] = `
disabled={true}
icon={
Object {
"name": "add",
"name": "lock-open",
}
}
onPress={[Function]}
title="Set Passcode"
title="Enter Passcode"
/>
</View>
`;
Expand All @@ -48,11 +48,11 @@ exports[`PasscodeAuth component test should render error message if there are an
disabled={true}
icon={
Object {
"name": "add",
"name": "lock-open",
}
}
onPress={[Function]}
title="Set Passcode"
title="Enter Passcode"
/>
</View>
`;

0 comments on commit 8a60b64

Please sign in to comment.