Remove useless withRouter

pull/10616/head
Jean-François YUEN 2018-01-31 12:05:31 +01:00
parent 80db6212b5
commit 723bbe9f12
1 changed files with 1 additions and 2 deletions

View File

@ -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)
)