diff options
author | Dan <danjm.com@gmail.com> | 2018-03-22 23:06:13 +0800 |
---|---|---|
committer | Dan <danjm.com@gmail.com> | 2018-03-22 23:06:13 +0800 |
commit | a0df4b6892f3a8f15d2915a062ebe1d9cdeabaec (patch) | |
tree | ae47ab5b641b537ccac351214497b0bede6c0904 | |
parent | d613dfb43419ea1e18691659d39f6ac403c21d75 (diff) | |
download | dexon-wallet-a0df4b6892f3a8f15d2915a062ebe1d9cdeabaec.tar.gz dexon-wallet-a0df4b6892f3a8f15d2915a062ebe1d9cdeabaec.tar.zst dexon-wallet-a0df4b6892f3a8f15d2915a062ebe1d9cdeabaec.zip |
Correct proptypes for t in new-account/create-form.js
-rw-r--r-- | ui/app/accounts/new-account/create-form.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/app/accounts/new-account/create-form.js b/ui/app/accounts/new-account/create-form.js index 72808856..65f29914 100644 --- a/ui/app/accounts/new-account/create-form.js +++ b/ui/app/accounts/new-account/create-form.js @@ -61,7 +61,7 @@ NewAccountCreateForm.propTypes = { createAccount: PropTypes.func, goHome: PropTypes.func, numberOfExistingAccounts: PropTypes.number, - t: PropTypes.object, + t: PropTypes.func, } const mapStateToProps = state => { |