Skip to content

Commit

Permalink
Fixed componentDidMount bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Arsen A. Gutsal committed Jul 16, 2019
1 parent a8dc9a0 commit b8cefcd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/page/Assets/secondary/CreateAccount.js
Original file line number Diff line number Diff line change
Expand Up @@ -115,10 +115,10 @@ class CreateAccount extends Component {
decimals: props.get('tokenDecimals'),
unit: props.get('tokenSymbol')
})
this.keyboardDidShowListener = Keyboard.addListener('keyboardDidShow', this._keyboardDidShow)
this.keyboardDidHideListener = Keyboard.addListener('keyboardDidHide', this._keyboardDidHide)
})()
})
this.keyboardDidShowListener = Keyboard.addListener('keyboardDidShow', this._keyboardDidShow)
this.keyboardDidHideListener = Keyboard.addListener('keyboardDidHide', this._keyboardDidHide)
}

/**
Expand Down

0 comments on commit b8cefcd

Please sign in to comment.