From 4438c34a8f4e9981688e2caa4b9f25f965dd6ebb Mon Sep 17 00:00:00 2001 From: Max Mogilski Date: Thu, 9 Nov 2023 14:51:53 +0100 Subject: [PATCH] chore: lint fix --- README.md | 7 ++++--- src/app/[lang]/layout.tsx | 1 - 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 71cbdc01..2107f9e4 100644 --- a/README.md +++ b/README.md @@ -53,15 +53,17 @@ HYGRAPH_WEBOOK_SECRET // secret used for authenticating webhooks ``` Search engine - take it from your algolia project's config + ```bash NEXT_PUBLIC_ALGOLIA_API_ID NEXT_PUBLIC_ALGOLIA_SEARCH_API_KEY ``` Analytics - used for counting views on your articles. Needed for 'Trending Articles' section + ```bash -GA_MEASUREMENT_ID: -GA_PROPERTY_ID: +GA_MEASUREMENT_ID: +GA_PROPERTY_ID: GA_BASE64_SERVICE_ACCOUNT: ``` @@ -73,7 +75,6 @@ yarn dev 5. Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. - ## 🚀 Deployment Easily deploy your Next.js app with [Vercel](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=github&utm_campaign=next-enterprise) by clicking the button below: //final repo name goes here diff --git a/src/app/[lang]/layout.tsx b/src/app/[lang]/layout.tsx index 1b8081ed..516b43cd 100644 --- a/src/app/[lang]/layout.tsx +++ b/src/app/[lang]/layout.tsx @@ -43,7 +43,6 @@ export default async function Layout({ children, params }: { children: React.Rea const [navigationData, translations] = await Promise.all([getNavigation(locale), getNavigationTranslation(locale)]) const { navigation, footer, logo } = navigationData - return (