Skip to content

Commit

Permalink
fix: remove console.log, console log remained in code #1507
Browse files Browse the repository at this point in the history
  • Loading branch information
Akryum committed Sep 13, 2023
1 parent f545763 commit 23c0c98
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion packages/vue-apollo-composable/src/useLazyQuery.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ export function useLazyQuery<
return new Promise<TResult>((resolve, reject) => {
const { off: offResult } = query.onResult((result) => {
if (!result.loading) {
console.log('result', result)
resolve(result.data)
offResult()
offError()
Expand Down

0 comments on commit 23c0c98

Please sign in to comment.