aboutsummaryrefslogtreecommitdiff
path: root/src/client/react/components/container/RoomFinder.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/react/components/container/RoomFinder.js')
-rw-r--r--src/client/react/components/container/RoomFinder.js6
1 files changed, 3 insertions, 3 deletions
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' }),
});