Skip to content

Commit

Permalink
Fix checkbox colors
Browse files Browse the repository at this point in the history
  • Loading branch information
Cal-L committed Mar 16, 2022
1 parent d2f0838 commit bf8c975
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/components/UI/SkipAccountSecurityModal/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ const SkipAccountSecurityModal = ({ modalVisible, onConfirm, onCancel, onPress,
value={skipCheckbox}
onValueChange={toggleSkipCheckbox}
boxType={'square'}
tintColors={{ true: colors.primary.default }}
tintColors={{ true: colors.primary.default, false: colors.border.default }}
testID={'skip-backup-check'}
/>
<Text onPress={toggleSkipCheckbox} style={styles.skipModalText} testID={'skip-backup-text'}>
Expand Down
2 changes: 1 addition & 1 deletion app/components/Views/ChoosePassword/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -689,7 +689,7 @@ class ChoosePassword extends PureComponent {
value={isSelected}
onValueChange={this.setSelection}
style={styles.checkbox}
tintColors={{ true: colors.primary.default }}
tintColors={{ true: colors.primary.default, false: colors.border.default }}
boxType="square"
testID={'password-understand-box'}
/>
Expand Down
2 changes: 1 addition & 1 deletion app/components/Views/ResetPassword/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -760,7 +760,7 @@ class ResetPassword extends PureComponent {
value={isSelected}
onValueChange={this.setSelection}
style={styles.checkbox}
tintColors={{ true: colors.primary.default }}
tintColors={{ true: colors.primary.default, false: colors.border.default }}
boxType="square"
testID={'password-understand-box'}
/>
Expand Down

0 comments on commit bf8c975

Please sign in to comment.