Skip to content

Commit 23c0c98

Browse files
committed
fix: remove console.log, console log remained in code #1507
1 parent f545763 commit 23c0c98

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

packages/vue-apollo-composable/src/useLazyQuery.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ export function useLazyQuery<
3333
return new Promise<TResult>((resolve, reject) => {
3434
const { off: offResult } = query.onResult((result) => {
3535
if (!result.loading) {
36-
console.log('result', result)
3736
resolve(result.data)
3837
offResult()
3938
offError()

0 commit comments

Comments
 (0)