aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/coinbase-form.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/components/coinbase-form.js')
-rw-r--r--ui/app/components/coinbase-form.js12
1 files changed, 9 insertions, 3 deletions
diff --git a/ui/app/components/coinbase-form.js b/ui/app/components/coinbase-form.js
index 0f980fbd5..d5915292e 100644
--- a/ui/app/components/coinbase-form.js
+++ b/ui/app/components/coinbase-form.js
@@ -1,11 +1,17 @@
const Component = require('react').Component
+const PropTypes = require('prop-types')
const h = require('react-hyperscript')
const inherits = require('util').inherits
-const connect = require('../metamask-connect')
+const connect = require('react-redux').connect
const actions = require('../actions')
+CoinbaseForm.contextTypes = {
+ t: PropTypes.func,
+}
+
module.exports = connect(mapStateToProps)(CoinbaseForm)
+
function mapStateToProps (state) {
return {
warning: state.appState.warning,
@@ -37,11 +43,11 @@ CoinbaseForm.prototype.render = function () {
}, [
h('button.btn-green', {
onClick: this.toCoinbase.bind(this),
- }, this.props.t('continueToCoinbase')),
+ }, this.context.t('continueToCoinbase')),
h('button.btn-red', {
onClick: () => props.dispatch(actions.goHome()),
- }, this.props.t('cancel')),
+ }, this.context.t('cancel')),
]),
])
}