From 3ef2c41e14ba8774c8af75c9d40eeff32a3ba56a Mon Sep 17 00:00:00 2001 From: Michal Miszczyszyn Date: Wed, 1 Nov 2023 02:16:10 +0100 Subject: [PATCH] Remove logs accidentally added when fixing auth --- src/ui/components/AuthProvider.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/ui/components/AuthProvider.tsx b/src/ui/components/AuthProvider.tsx index 6d2a98e54..aa04d0b31 100644 --- a/src/ui/components/AuthProvider.tsx +++ b/src/ui/components/AuthProvider.tsx @@ -21,7 +21,6 @@ export const saleorAuthClient = createSaleorAuthClient({ }); const makeUrqlClient = () => { - console.log(`makeUrqlClient`); return createClient({ url: saleorApiUrl, suspense: true, @@ -32,7 +31,6 @@ const makeUrqlClient = () => { }; export function AuthProvider({ children }: { children: ReactNode }) { - console.log("AuthProvider"); invariant(saleorApiUrl, "Missing NEXT_PUBLIC_SALEOR_API_URL env variable"); const [urqlClient, setUrqlClient] = useState(() => makeUrqlClient());