From 21eb898ea1c524626570b860cedfbfa0780d09ae Mon Sep 17 00:00:00 2001 From: Florian Sommariva Date: Tue, 17 Oct 2023 18:06:55 +0200 Subject: [PATCH] Add semantics to Footer components --- frontend/src/components/Footer/Footer.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/Footer/Footer.tsx b/frontend/src/components/Footer/Footer.tsx index fa6a0de60..a107f2dd0 100644 --- a/frontend/src/components/Footer/Footer.tsx +++ b/frontend/src/components/Footer/Footer.tsx @@ -9,7 +9,7 @@ export const Footer: React.FC = () => { const footerTop = config.footerTopHtml[intl.locale] ?? config.footerTopHtml.default; const footerBottom = config.footerBottomHtml[intl.locale] ?? config.footerBottomHtml.default; return ( - <> + ); };