diff --git a/src/components/Footer/Footer.jsx b/src/components/Footer/Footer.jsx index c7ac75ec9..86fab3073 100644 --- a/src/components/Footer/Footer.jsx +++ b/src/components/Footer/Footer.jsx @@ -23,8 +23,6 @@ const Footer = () => { // TODO this looks like a bad way of doing it, I think it should be re-factored const shouldHideOnDesktop = isProjectDetails || isCreateProject || isNotificationsPage || isSettingsPage - // on mobile show footer only when user is logged-out, so only root page is available - const shouldHideOnMobile = window.location.pathname !== '/' return ( @@ -39,9 +37,8 @@ const Footer = () => { ) } else { - return (shouldHideOnMobile ? null : - {/**/} - ) + {/* never show footer on mobile */} + return null } }}