Skip to content

Commit

Permalink
Remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
testower committed Nov 22, 2023
1 parent 3803ada commit 4c36414
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion client-next/src/hooks/useTripQuery.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,6 @@ export const useTripQuery: TripQueryHook = (variables) => {
const [data, setData] = useState<QueryType | null>(null);
const callback = useCallback(
async (pageCursor?: string) => {
console.log({ pageCursor });
if (variables) {
if (pageCursor) {
setData((await request(endpoint, query, { ...variables, pageCursor })) as QueryType);
Expand Down

0 comments on commit 4c36414

Please sign in to comment.