From 0bc323a777a607090af87636026f668104cf8a0c Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Wed, 15 Dec 2021 17:16:54 +0100 Subject: fix: change branding title tag on homepage I forgot to pass isHome arg... --- src/pages/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/pages/index.tsx') diff --git a/src/pages/index.tsx b/src/pages/index.tsx index 6654617..f51dec9 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -21,7 +21,7 @@ const Home: NextPageWithLayout = ({ data }) => { }; Home.getLayout = function getLayout(page: ReactElement) { - return {page}; + return {page}; }; export const getStaticProps: GetStaticProps = async (ctx) => { -- cgit v1.2.3