- {live && (
+ {live && !hideBack && (
<>
diff --git a/frontend/app/components/Session_/Subheader.js b/frontend/app/components/Session_/Subheader.js
index 2b08cc5e7..a6187b4e5 100644
--- a/frontend/app/components/Session_/Subheader.js
+++ b/frontend/app/components/Session_/Subheader.js
@@ -13,6 +13,8 @@ import { observer } from 'mobx-react-lite';
import AutoplayToggle from 'Shared/AutoplayToggle';
import { connect } from 'react-redux';
import SessionTabs from 'Components/Session/Player/SharedComponents/SessionTabs'
+import { IFRAME } from 'App/constants/storageKeys';
+import cn from 'classnames';
const localhostWarn = (project) => project + '_localhost_warn';
@@ -22,6 +24,7 @@ function SubHeader(props) {
const [showWarningModal, setWarning] = React.useState(defaultLocalhostWarn);
const { player, store } = React.useContext(PlayerContext);
const { width, height, endTime, location: currentLocation = 'loading...', } = store.get();
+ const hasIframe = localStorage.getItem(IFRAME) === "true";
const enabledIntegration = useMemo(() => {
const { integrations } = props;
@@ -103,7 +106,7 @@ function SubHeader(props) {
) : null}