From 949974e3edc11ffb144ead7f8a5f70d93e532e3c Mon Sep 17 00:00:00 2001 From: Noah Loomans Date: Wed, 27 Jun 2018 16:35:52 +0200 Subject: Move callbacks to mapDispatchToProps --- src/client/react/components/container/RoomFinder.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/client/react/components/container/RoomFinder.js') diff --git a/src/client/react/components/container/RoomFinder.js b/src/client/react/components/container/RoomFinder.js index f6e7ac6..c8c506b 100644 --- a/src/client/react/components/container/RoomFinder.js +++ b/src/client/react/components/container/RoomFinder.js @@ -100,13 +100,13 @@ class RoomFinder extends React.Component { } } -const mapStateToProps = (state, { match, location, history }) => ({ +const mapStateToProps = (state, { match }) => ({ user: userFromMatch(match), - setUser: makeSetUser(location, history), isVisible: state.isRoomFinderVisible, }); -const mapDispatchToProps = dispatch => ({ +const mapDispatchToProps = (dispatch, { location, history }) => ({ + setUser: makeSetUser(location, history), onHide: () => dispatch({ type: 'ROOM_FINDER/HIDE' }), }); -- cgit v1.1