aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/root.js
diff options
context:
space:
mode:
authorDan <danjm.com@gmail.com>2018-03-29 23:00:44 +0800
committerDan <danjm.com@gmail.com>2018-03-29 23:12:38 +0800
commit0a711f0de0e342b24988a5da4ca5c64342153210 (patch)
tree9dd6014e6389cfad02d5380e6810a12fdf747b0a /ui/app/root.js
parent650b716f55fcfa809b22708b9ad43c8a0716f9fc (diff)
downloadtangerine-wallet-browser-0a711f0de0e342b24988a5da4ca5c64342153210.tar.gz
tangerine-wallet-browser-0a711f0de0e342b24988a5da4ca5c64342153210.tar.zst
tangerine-wallet-browser-0a711f0de0e342b24988a5da4ca5c64342153210.zip
Removes t from props via metamask-connect and instead places it on context via a provider.
Diffstat (limited to 'ui/app/root.js')
-rw-r--r--ui/app/root.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/ui/app/root.js b/ui/app/root.js
index 21d6d1829..58605a3d2 100644
--- a/ui/app/root.js
+++ b/ui/app/root.js
@@ -3,6 +3,7 @@ const Component = require('react').Component
const Provider = require('react-redux').Provider
const h = require('react-hyperscript')
const SelectedApp = require('./select-app')
+const I18nProvider = require('./i18n-provider')
module.exports = Root
@@ -15,7 +16,7 @@ Root.prototype.render = function () {
h(Provider, {
store: this.props.store,
}, [
- h(SelectedApp),
+ h(I18nProvider, [ h(SelectedApp) ]),
])
)