diff --git a/sites/shared/components/workbench/header.mjs b/sites/shared/components/workbench/header.mjs index 45f55e031dd..3b500c6f94c 100644 --- a/sites/shared/components/workbench/header.mjs +++ b/sites/shared/components/workbench/header.mjs @@ -3,7 +3,6 @@ import { useContext } from 'react' import { useTranslation } from 'next-i18next' // Context import { ModalContext } from 'shared/context/modal-context.mjs' -import { LoadingContext } from 'shared/context/loading-context.mjs' // Components import { BeakerIcon, @@ -38,7 +37,6 @@ export const NavButton = ({ active ? 'font-heavy' : '' }` const span = {label} - console.log('in button', label, onClick) return onClick ? ( @@ -160,7 +158,6 @@ const NavIcons = ({ setModal, setView, view }) => { export const WorkbenchHeader = ({ view, setView, update }) => { const { setModal } = useContext(ModalContext) - const { loading } = useContext(LoadingContext) return ( { w-full z-30 transition-transform - ${loading ? '' : 'fixed bottom-0 lg:top-0 left-0 translate-y-36 lg:-translate-y-36'} drop-shadow-xl `} > @@ -178,6 +174,7 @@ export const WorkbenchHeader = ({ view, setView, update }) => { {/* Non-mobile content */} + hello?