diff --git a/src/FullScreenView.tsx b/src/FullScreenView.tsx index 60edfdbd..78eec7fe 100644 --- a/src/FullScreenView.tsx +++ b/src/FullScreenView.tsx @@ -27,6 +27,7 @@ import styles from "./FullScreenView.module.css"; import { TranslatedError } from "./TranslatedError"; import { Config } from "./config/Config"; import { RageshakeButton } from "./settings/RageshakeButton"; +import { useUrlParams } from "./UrlParams"; interface FullScreenViewProps { className?: string; @@ -37,12 +38,11 @@ export const FullScreenView: FC = ({ className, children, }) => { + const { hideHeader } = useUrlParams(); return (
- - - + {!hideHeader && }