Skip to content

Commit

Permalink
feat: remove log
Browse files Browse the repository at this point in the history
  • Loading branch information
lance10030 committed Aug 13, 2024
1 parent 4c6faf4 commit bff53b7
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion src/hooks/useLatestGame.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ export const useLatestGame = (
...defaultParams,
...(params ? params : {}),
};
console.log(p, 'ppp')
const requestUrl = `${indexApiPrefix}${url}`;
const res = useSWR([requestUrl, p], getFetcher(requestUrl, p));
return res;
Expand Down
2 changes: 0 additions & 2 deletions src/hooks/useSyncEvents.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@ const getFetcher = (path: string, params?: EventsParams,) => async (): Promise<I
...defaultParams,
... (params ? params : {})
}
console.log(params, 'params')

return await post(path, p);
};

Expand Down
1 change: 0 additions & 1 deletion src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ export default function Page() {
error: BoundError,
} = useBoundProgress();
const { data: amountData, error: amountError } = useAmountPerDay();
console.log({ amountData }, 'amountData')
const days = amountData?.data?.map((item) => item.date);

const error =
Expand Down

0 comments on commit bff53b7

Please sign in to comment.