From afccedbfa3d90193034d3669bd1d55c1bdf4e0de Mon Sep 17 00:00:00 2001 From: Mathias Jakobsen Date: Wed, 13 Aug 2025 10:20:03 +0100 Subject: [PATCH] Merge pull request #27831 from overleaf/msm-fix-sp-footer [web] Fix CE/SP footer rendering GitOrigin-RevId: 600ee50798c6b727dec2011198c4e55dc73455a5 --- .../web/frontend/js/shared/components/footer/thin-footer.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 ab63dcdfde..21e6e972df 100644 --- a/services/web/frontend/js/shared/components/footer/thin-footer.tsx +++ b/services/web/frontend/js/shared/components/footer/thin-footer.tsx @@ -16,7 +16,7 @@ function FooterItemLi({ const textToDisplay = translatedText || text if (!href) { - return
  • {textToDisplay}
  • + return
  • } const linkProps = { @@ -27,7 +27,7 @@ function FooterItemLi({ return (
  • - + {textToDisplay}
  • ) }