diff options
Diffstat (limited to 'ui/app/app.js')
-rw-r--r-- | ui/app/app.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/app/app.js b/ui/app/app.js index c6777ca16..064595ba3 100644 --- a/ui/app/app.js +++ b/ui/app/app.js @@ -36,7 +36,7 @@ const ReactCSSTransitionGroup = require('react-addons-css-transition-group') const NetworkDropdown = require('./components/dropdowns/network-dropdown') // Global Modals -const BuyModal = require('./components/modals/index').BuyModal +const Modal = require('./components/modals/index').Modal module.exports = connect(mapStateToProps, mapDispatchToProps)(App) @@ -107,7 +107,7 @@ App.prototype.render = function () { }, [ // global modal - h(BuyModal, {}, []), + h(Modal, {}, []), // app bar this.renderAppBar(), |