Delete password button bug fix

This commit is contained in:
mashazyu
2019-04-15 14:05:51 +02:00
parent 772a277315
commit a291c78379
5 changed files with 29 additions and 10 deletions
+2 -1
View File
@@ -14,7 +14,7 @@ export default class DeletePassword extends Component {
startConfirmWithPassword = () => {
this.setState({ enteringCurrentPassword: true })
this.props.onStartDeletingPassword()
this.props.onStartDelete()
}
startDeletePassword = async () => {
@@ -23,6 +23,7 @@ export default class DeletePassword extends Component {
cancelConfirmationWithPassword = () => {
this.setState({ enteringCurrentPassword: false })
this.props.onCancelDelete()
}
render() {