diff --git a/webapp/channels/src/components/header_footer_route/footer.tsx b/webapp/channels/src/components/header_footer_route/footer.tsx index a593bd771df3..0a80335094dc 100644 --- a/webapp/channels/src/components/header_footer_route/footer.tsx +++ b/webapp/channels/src/components/header_footer_route/footer.tsx @@ -15,6 +15,11 @@ const Footer = () => { const {AboutLink, PrivacyPolicyLink, TermsOfServiceLink, HelpLink} = useSelector(getConfig); + // Check if MMEMBED cookie is set and if so, don't show the footer + if (document.cookie.includes('MMEMBED=1')) { + return null; + } + return (