Skip to content

Commit

Permalink
lint fix after npm install latest
Browse files Browse the repository at this point in the history
  • Loading branch information
onhate committed Aug 1, 2024
1 parent 9fa6cdb commit d5b0175
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/clients/client.js
Original file line number Diff line number Diff line change
Expand Up @@ -234,8 +234,8 @@ class Client {
hasCursorPagination(page)
? page.links.next
: hasOffsetPagination(page)
? page.next_page
: null;
? page.next_page
: null;
const item = processResponseBody(currentPage, this);

bodyList.push(item);
Expand Down
4 changes: 2 additions & 2 deletions src/clients/helpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ function populateFields(data, response, map) {
record[name] = all
? responseDataset
: array
? findAllRecordsById(responseDataset, key, record[field])
: findOneRecordById(responseDataset, key, record[field]);
? findAllRecordsById(responseDataset, key, record[field])
: findOneRecordById(responseDataset, key, record[field]);
}
}
}
Expand Down

0 comments on commit d5b0175

Please # to comment.