Showing
1 changed file
with
2 additions
and
1 deletions
| ... | @@ -10,7 +10,7 @@ const LOG_OUT = gql` | ... | @@ -10,7 +10,7 @@ const LOG_OUT = gql` |
| 10 | } | 10 | } |
| 11 | `; | 11 | `; |
| 12 | 12 | ||
| 13 | -export default withRouter(({ match, location, history }) => { | 13 | +export default withRouter(({ match, location, history, chName }) => { |
| 14 | const [logOut] = useMutation(LOG_OUT); | 14 | const [logOut] = useMutation(LOG_OUT); |
| 15 | return ( | 15 | return ( |
| 16 | <MenuPresenter | 16 | <MenuPresenter |
| ... | @@ -18,6 +18,7 @@ export default withRouter(({ match, location, history }) => { | ... | @@ -18,6 +18,7 @@ export default withRouter(({ match, location, history }) => { |
| 18 | match={match} | 18 | match={match} |
| 19 | location={location} | 19 | location={location} |
| 20 | history={history} | 20 | history={history} |
| 21 | + chName={chName} | ||
| 21 | /> | 22 | /> |
| 22 | ); | 23 | ); |
| 23 | }); | 24 | }); | ... | ... |
-
Please register or login to post a comment