aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/pages/unlock-page
diff options
context:
space:
mode:
authorThomas <thomas.b.huang@gmail.com>2018-05-17 15:01:36 +0800
committerThomas <thomas.b.huang@gmail.com>2018-05-17 15:01:36 +0800
commit770379c3da4f625b265d752d45423d179dfc0b9d (patch)
treedb908a8fa5f4979ffcac4436d2227294d0df94e4 /ui/app/components/pages/unlock-page
parent5e80bc4cb93277c8b3952345a6cb4cc055248b94 (diff)
parent708422432c634ffbd4c73388f980c43f766b3355 (diff)
downloadtangerine-wallet-browser-770379c3da4f625b265d752d45423d179dfc0b9d.tar.gz
tangerine-wallet-browser-770379c3da4f625b265d752d45423d179dfc0b9d.tar.zst
tangerine-wallet-browser-770379c3da4f625b265d752d45423d179dfc0b9d.zip
Merge branch 'develop' into testing
Diffstat (limited to 'ui/app/components/pages/unlock-page')
-rw-r--r--ui/app/components/pages/unlock-page/unlock-page.component.js1
-rw-r--r--ui/app/components/pages/unlock-page/unlock-page.container.js2
2 files changed, 0 insertions, 3 deletions
diff --git a/ui/app/components/pages/unlock-page/unlock-page.component.js b/ui/app/components/pages/unlock-page/unlock-page.component.js
index d5e2a3224..0976d9506 100644
--- a/ui/app/components/pages/unlock-page/unlock-page.component.js
+++ b/ui/app/components/pages/unlock-page/unlock-page.component.js
@@ -175,7 +175,6 @@ UnlockPage.propTypes = {
isUnlocked: PropTypes.bool,
t: PropTypes.func,
useOldInterface: PropTypes.func,
- setNetworkEndpoints: PropTypes.func,
}
export default UnlockPage
diff --git a/ui/app/components/pages/unlock-page/unlock-page.container.js b/ui/app/components/pages/unlock-page/unlock-page.container.js
index 9788a18ea..18fed9b2e 100644
--- a/ui/app/components/pages/unlock-page/unlock-page.container.js
+++ b/ui/app/components/pages/unlock-page/unlock-page.container.js
@@ -6,7 +6,6 @@ const {
tryUnlockMetamask,
forgotPassword,
markPasswordForgotten,
- setNetworkEndpoints,
} = require('../../../actions')
import UnlockPage from './unlock-page.component'
@@ -23,7 +22,6 @@ const mapDispatchToProps = dispatch => {
forgotPassword: () => dispatch(forgotPassword()),
tryUnlockMetamask: password => dispatch(tryUnlockMetamask(password)),
markPasswordForgotten: () => dispatch(markPasswordForgotten()),
- setNetworkEndpoints: type => dispatch(setNetworkEndpoints(type)),
}
}