diff --git a/frontend/app/components/Session/Player/LivePlayer/LiveControls.tsx b/frontend/app/components/Session/Player/LivePlayer/LiveControls.tsx index 38393d947..c81e702fc 100644 --- a/frontend/app/components/Session/Player/LivePlayer/LiveControls.tsx +++ b/frontend/app/components/Session/Player/LivePlayer/LiveControls.tsx @@ -20,7 +20,7 @@ import styles from 'Components/Session_/Player/Controls/controls.module.css'; function Controls(props: any) { // @ts-ignore ?? TODO const { player, store } = React.useContext(PlayerContext); - const [noMulti, setNoMulti] = React.useState(false); + const [noControls, setNoControls] = React.useState(false); const { search } = useLocation(); const { jumpToLive } = player; @@ -64,7 +64,7 @@ function Controls(props: any) { if ( (queryParams.has('noFooter') && queryParams.get('noFooter') === 'true') ) { - setNoMulti(true); + setNoControls(true); } return () => { document.removeEventListener('keydown', onKeyDown.bind(this)); @@ -88,7 +88,7 @@ function Controls(props: any) { return (
- {!noMulti ? + {!noControls ?
{!closedLive && (