From 4a0a077a343c70f154c4dedd71df4f01312f89ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thibault=20=E2=80=9CAd=C3=A6dra=E2=80=9D=20Hamel?= Date: Fri, 28 Jun 2024 04:11:30 +0200 Subject: [PATCH] Fix meta tags --- lib/views/layout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/views/layout.tsx b/lib/views/layout.tsx index c171c27..72f68d0 100644 --- a/lib/views/layout.tsx +++ b/lib/views/layout.tsx @@ -10,7 +10,7 @@ type Props = { export default ({ title, meta, Content }: Props) => { const metaTags = Object.entries(Object.assign({}, SITE_DEFAULT_META, meta || {})).map( - ([name, value]) => , + ([name, content]) => , ); return (