Skip to content

Commit c8807f2

Browse files
committed
remove unused logs
1 parent 1d61c84 commit c8807f2

File tree

2 files changed

+0
-5
lines changed

2 files changed

+0
-5
lines changed

src/components/issue/IssuesFromLastRepo.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ const IssuesFromLastRepo = ({ user }: IssuesFromLastRepoProps) => {
5151
}
5252

5353
useEffect(() => {
54-
console.log('IssuesFromLastRepo: useEffect', data.issuesFromLastRepo.edges)
5554
scrollHorizontally(scrollDirection.Right)
5655
}, [data.issuesFromLastRepo.edges, scrollHorizontally, scrollDirection.Right])
5756

src/relay/environment.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@ export async function networkFetch(
1919
variables: Variables,
2020
cookie: string | undefined
2121
): Promise<GraphQLResponse> {
22-
console.log('cookie: ', cookie)
23-
2422
const resp = await fetch(HTTP_ENDPOINT, {
2523
method: 'POST',
2624
credentials: 'include',
@@ -35,8 +33,6 @@ export async function networkFetch(
3533
}),
3634
})
3735
const json = await resp.json()
38-
console.log('json: ', json)
39-
4036
// GraphQL returns exceptions (for example, a missing required variable) in the "errors"
4137
// property of the response. If any exceptions occurred when processing the request,
4238
// throw an error to indicate to the developer what went wrong.

0 commit comments

Comments
 (0)