aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/root.js
diff options
context:
space:
mode:
authorDan <danjm.com@gmail.com>2018-03-30 06:46:45 +0800
committerDan <danjm.com@gmail.com>2018-03-30 06:46:45 +0800
commitad603da2e72fbc64733836e1b3626627de81fa76 (patch)
treee5dec131e3127b3e7f6330792bca65b7edc30d52 /ui/app/root.js
parent949ac352de33fb8daf9ae4ea240e201cc25418c0 (diff)
downloadtangerine-wallet-browser-ad603da2e72fbc64733836e1b3626627de81fa76.tar.gz
tangerine-wallet-browser-ad603da2e72fbc64733836e1b3626627de81fa76.tar.zst
tangerine-wallet-browser-ad603da2e72fbc64733836e1b3626627de81fa76.zip
Stopping wrapping provider children in div; stop wrapping old-ui in provider.
Diffstat (limited to 'ui/app/root.js')
-rw-r--r--ui/app/root.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/ui/app/root.js b/ui/app/root.js
index 58605a3d2..21d6d1829 100644
--- a/ui/app/root.js
+++ b/ui/app/root.js
@@ -3,7 +3,6 @@ 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
@@ -16,7 +15,7 @@ Root.prototype.render = function () {
h(Provider, {
store: this.props.store,
}, [
- h(I18nProvider, [ h(SelectedApp) ]),
+ h(SelectedApp),
])
)