Skip to content

Commit d5b0175

Browse files
committed
lint fix after npm install latest
1 parent 9fa6cdb commit d5b0175

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/clients/client.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -234,8 +234,8 @@ class Client {
234234
hasCursorPagination(page)
235235
? page.links.next
236236
: hasOffsetPagination(page)
237-
? page.next_page
238-
: null;
237+
? page.next_page
238+
: null;
239239
const item = processResponseBody(currentPage, this);
240240

241241
bodyList.push(item);

src/clients/helpers.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ function populateFields(data, response, map) {
5454
record[name] = all
5555
? responseDataset
5656
: array
57-
? findAllRecordsById(responseDataset, key, record[field])
58-
: findOneRecordById(responseDataset, key, record[field]);
57+
? findAllRecordsById(responseDataset, key, record[field])
58+
: findOneRecordById(responseDataset, key, record[field]);
5959
}
6060
}
6161
}

0 commit comments

Comments
 (0)