Skip to content

Commit

Permalink
Fix color of CreateTransactionPassword title
Browse files Browse the repository at this point in the history
  • Loading branch information
mdfkbtc committed Jul 30, 2020
1 parent 3d5f468 commit 6c4213b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/screens/PinFlow/ConfirmTransactionPassword.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export class ConfirmTransactionPassword extends PureComponent<Props, State> {
header={<Header navigation={this.props.navigation} isBackArrow title={i18n.onboarding.confirmPassword} />}
>
<View style={styles.infoContainer}>
<Text style={typography.headline4}>{i18n.onboarding.createPassword}</Text>
<Text style={[typography.headline4, { color: palette.white }]}>{i18n.onboarding.createPassword}</Text>
<Text style={styles.pinDescription}>{i18n.onboarding.createPasswordDescription}</Text>
</View>
<View style={styles.inputItemContainer}>
Expand Down
2 changes: 1 addition & 1 deletion src/screens/PinFlow/CreateTransactionPassword.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ export class CreateTransactionPassword extends PureComponent<Props, State> {
header={<Header navigation={this.props.navigation} title={i18n.onboarding.onboarding} />}
>
<View style={styles.infoContainer}>
<Text style={typography.headline4}>{i18n.onboarding.createPassword}</Text>
<Text style={[typography.headline4, { color: palette.white }]}>{i18n.onboarding.createPassword}</Text>
<Text style={styles.pinDescription}>{i18n.onboarding.createPasswordDescription}</Text>
</View>
<View style={styles.inputItemContainer}>
Expand Down

0 comments on commit 6c4213b

Please sign in to comment.