diff --git a/ui/src/hosts/containers/HostsPage.js b/ui/src/hosts/containers/HostsPage.js index b61024f5b2..e76201d00c 100644 --- a/ui/src/hosts/containers/HostsPage.js +++ b/ui/src/hosts/containers/HostsPage.js @@ -1,6 +1,5 @@ import React, {PropTypes, Component} from 'react' import {connect} from 'react-redux' -import {withRouter} from 'react-router' import {bindActionCreators} from 'redux' import _ from 'lodash' @@ -185,5 +184,5 @@ const mapDispatchToProps = dispatch => ({ }) export default connect(mapStateToProps, mapDispatchToProps)( - ManualRefresh(withRouter(HostsPage)) + ManualRefresh(HostsPage) )