Skip to content
This repository has been archived by the owner on Jun 24, 2022. It is now read-only.

Commit

Permalink
Fixes #2
Browse files Browse the repository at this point in the history
Uncommented click handler
  • Loading branch information
d4mr committed Jun 20, 2020
1 parent b82e79c commit c105293
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/Home/layouts/Restream.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export default function Restream({ handleError}) {
} else {
setErrors(false);
}
Streams.createRetream(streamToken).catch(handleError);
Streams.createRestream(streamToken).catch(handleError);
}

return <Container maxWidth='lg' style={{ height: '100%', display: 'flex', flexDirection: 'column', paddingTop: 20 }}>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Home/layouts/Sidebar.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ function Sidebar({ history, handleCloseStream }) {
const handleClickClose = (event, token) => {
event.stopPropagation();
// //console.log(token);
// handleCloseStream(token);
handleCloseStream(token);
}

useEffect(() => {
Expand Down

0 comments on commit c105293

Please sign in to comment.