Skip to content

Commit

Permalink
Removes debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
ryguyk committed Oct 19, 2023
1 parent 6e93575 commit 042a3fd
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/data/queries/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,6 @@ export async function fetchSingleResourceCollectionPage<T>(
pageSize: number,
pageNumber: number
): Promise<ResourceCollection<T>> {
/*eslint-disable-next-line*/
console.log('test a')
const page = await drupalClient.getResourceCollection<JsonApiResponse>(
resourceType,
{
Expand Down Expand Up @@ -71,8 +69,6 @@ export async function fetchAndConcatAllResourceCollectionPages<T>(
length: totalPages - 1,
}).map((_, i) => {
const pageNumber = i + 2
/*eslint-disable-next-line*/
console.log('test b')
return drupalClient.getResourceCollection<T[]>(resourceType, {
params: addPagingParams(params, pageSize, pageNumber).getQueryObject(),
})
Expand Down

0 comments on commit 042a3fd

Please sign in to comment.