diff --git a/services/web/frontend/js/features/project-list/components/project-list-ds-nav.tsx b/services/web/frontend/js/features/project-list/components/project-list-ds-nav.tsx
index a558bdd6ac..ca081536b6 100644
--- a/services/web/frontend/js/features/project-list/components/project-list-ds-nav.tsx
+++ b/services/web/frontend/js/features/project-list/components/project-list-ds-nav.tsx
@@ -16,7 +16,6 @@ import { TableContainer } from '@/shared/components/table'
import DashApiError from '@/features/project-list/components/dash-api-error'
import getMeta from '@/utils/meta'
import DefaultNavbar from '@/shared/components/navbar/default-navbar'
-import Footer from '@/shared/components/footer/footer'
import SidebarDsNav from '@/features/project-list/components/sidebar/sidebar-ds-nav'
import SystemMessages from '@/shared/components/system-messages'
import overleafLogo from '@/shared/svgs/overleaf-a-ds-solution-mallard.svg'
@@ -27,7 +26,6 @@ import { isSplitTestEnabled } from '@/utils/splitTestUtils'
export function ProjectListDsNav() {
const navbarProps = getMeta('ol-navbar')
- const footerProps = getMeta('ol-footer')
const { t } = useTranslation()
const {
error,
@@ -166,7 +164,6 @@ export function ProjectListDsNav() {
-
diff --git a/services/web/frontend/js/features/project-list/components/project-list-root.tsx b/services/web/frontend/js/features/project-list/components/project-list-root.tsx
index bc3a895a1a..4f49097264 100644
--- a/services/web/frontend/js/features/project-list/components/project-list-root.tsx
+++ b/services/web/frontend/js/features/project-list/components/project-list-root.tsx
@@ -14,7 +14,6 @@ import withErrorBoundary from '../../../infrastructure/error-boundary'
import { GenericErrorBoundaryFallback } from '@/shared/components/generic-error-boundary-fallback'
import getMeta from '@/utils/meta'
import DefaultNavbar from '@/shared/components/navbar/default-navbar'
-import Footer from '@/shared/components/footer/footer'
import WelcomePageContent from '@/features/project-list/components/welcome-page-content'
import { ProjectListDsNav } from '@/features/project-list/components/project-list-ds-nav'
import { DsNavStyleProvider } from '@/features/project-list/components/use-is-ds-nav'
@@ -51,7 +50,6 @@ export function ProjectListRootInner() {
function DefaultNavbarAndFooter({ children }: { children: ReactNode }) {
const navbarProps = getMeta('ol-navbar')
- const footerProps = getMeta('ol-footer')
return (
<>
@@ -62,7 +60,6 @@ function DefaultNavbarAndFooter({ children }: { children: ReactNode }) {
>
{children}
-
>
)
}
diff --git a/services/web/frontend/js/shared/components/footer/thin-footer.tsx b/services/web/frontend/js/shared/components/footer/thin-footer.tsx
index 21e6e972df..8d44310238 100644
--- a/services/web/frontend/js/shared/components/footer/thin-footer.tsx
+++ b/services/web/frontend/js/shared/components/footer/thin-footer.tsx
@@ -40,40 +40,43 @@ function Separator() {
)
}
-function ThinFooter({
- showPoweredBy,
- subdomainLang,
- leftItems,
- rightItems,
-}: FooterMetadata) {
+function ThinFooter({ subdomainLang, leftItems, rightItems }: FooterMetadata) {
const showLanguagePicker = Boolean(
subdomainLang && Object.keys(subdomainLang).length > 1
)
- const hasCustomLeftNav = Boolean(leftItems && leftItems.length > 0)
-
return (