Skip to content

Commit

Permalink
Remove logs accidentally added when fixing auth
Browse files Browse the repository at this point in the history
  • Loading branch information
typeofweb committed Nov 1, 2023
1 parent c59b35a commit 3ef2c41
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/ui/components/AuthProvider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ export const saleorAuthClient = createSaleorAuthClient({
});

const makeUrqlClient = () => {
console.log(`makeUrqlClient`);
return createClient({
url: saleorApiUrl,
suspense: true,
Expand All @@ -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<Client>(() => makeUrqlClient());
Expand Down

0 comments on commit 3ef2c41

Please sign in to comment.