diff options
Diffstat (limited to 'ui/app/root.js')
-rw-r--r-- | ui/app/root.js | 3 |
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), ]) ) |