sdy

update props

......@@ -10,7 +10,7 @@ const LOG_OUT = gql`
}
`;
export default withRouter(({ match, location, history }) => {
export default withRouter(({ match, location, history, chName }) => {
const [logOut] = useMutation(LOG_OUT);
return (
<MenuPresenter
......@@ -18,6 +18,7 @@ export default withRouter(({ match, location, history }) => {
match={match}
location={location}
history={history}
chName={chName}
/>
);
});
......