diff options
author | kumavis <kumavis@users.noreply.github.com> | 2018-03-28 10:06:33 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-28 10:06:33 +0800 |
commit | 5b9ea8751e9203003be8048720cbc567bcc01cd8 (patch) | |
tree | 2af8a0435f4221045043a4309098573b14b264df | |
parent | 0582fdb617a23cc56e9e08460f09d86769599fc1 (diff) | |
parent | db4800dc3593fa2d5988f1e3c1cb1acf6eac763d (diff) | |
download | tangerine-wallet-browser-5b9ea8751e9203003be8048720cbc567bcc01cd8.tar.gz tangerine-wallet-browser-5b9ea8751e9203003be8048720cbc567bcc01cd8.tar.zst tangerine-wallet-browser-5b9ea8751e9203003be8048720cbc567bcc01cd8.zip |
Merge pull request #3743 from gasolin/buyetherview
remove unavailable goToBuyEtherView propType
-rw-r--r-- | mascara/src/app/first-time/index.js | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/mascara/src/app/first-time/index.js b/mascara/src/app/first-time/index.js index c0bba53d6..0cc3b4b0e 100644 --- a/mascara/src/app/first-time/index.js +++ b/mascara/src/app/first-time/index.js @@ -20,7 +20,6 @@ class FirstTimeFlow extends Component { seedWords: PropTypes.string, address: PropTypes.string, noActiveNotices: PropTypes.bool, - goToBuyEtherView: PropTypes.func.isRequired, }; static defaultProps = { @@ -171,4 +170,3 @@ export default connect( openBuyEtherModal: () => dispatch(showModal({ name: 'DEPOSIT_ETHER'})), }) )(FirstTimeFlow) - |