(state, ownProps)
| 145 | } |
| 146 | } |
| 147 | const mapStateToProps = (state, ownProps) => { |
| 148 | const { query } = ownProps; |
| 149 | const createdByFilterVal = query.getFilter('creator_id'); |
| 150 | |
| 151 | return { |
| 152 | result: selectCollectionsResult(state, query), |
| 153 | role: selectCurrentRole(state), |
| 154 | createdByFilterVal, |
| 155 | }; |
| 156 | }; |
| 157 | |
| 158 | export default compose( |
| 159 | withRouter, |
nothing calls this directly
no test coverage detected