Skip to content

Commit

Permalink
[B] Troubleshooting failing request in dev deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
Blake Mason committed Aug 21, 2023
1 parent f00a16e commit 215e6a1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/api/efd.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ export default function useEfd() {
const url = process.env.NEXT_PUBLIC_EFD_URL;

const { data, error } = useSWR(url, fetcher);

// eslint-disable-next-line no-console
console.log(url, data, !error && !data, error);
return {
data,
isLoading: !error && !data,
Expand Down

0 comments on commit 215e6a1

Please sign in to comment.