From aec575c3b5797069e4964cfafa26e3de3b92f99e Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Mon, 13 Dec 2021 22:04:03 +0100 Subject: chore: add main-nav component I choose to implement main-nav paths manually instead of fetching them from GraphQL to ensure functional navigation without JS. --- src/services/graphql/client.ts | 1 - 1 file changed, 1 deletion(-) (limited to 'src/services') diff --git a/src/services/graphql/client.ts b/src/services/graphql/client.ts index 160021b..a58441f 100644 --- a/src/services/graphql/client.ts +++ b/src/services/graphql/client.ts @@ -2,7 +2,6 @@ import { GraphQLClient } from 'graphql-request'; export const getGraphQLClient = () => { const apiUrl: string = process.env.NEXT_PUBLIC_GRAPHQL_API || ''; - console.log(apiUrl); if (!apiUrl) throw new Error('API URL not defined.'); -- cgit v1.2.3