Skip to content

Commit 0027901

Browse files
committed
lint fix
1 parent 4d4f9e4 commit 0027901

File tree

1 file changed

+4
-9
lines changed

1 file changed

+4
-9
lines changed

src/clients/client.js

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ class Client {
167167
!Array.isArray(args.at(-1)) &&
168168
args.pop();
169169

170-
return await this.transporter.request(method, uri, body);
170+
return this.transporter.request(method, uri, body);
171171
}
172172

173173
/**
@@ -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);
@@ -245,12 +245,7 @@ class Client {
245245

246246
const fetchPagesRecursively = async (pageUri) => {
247247
const isIncremental = pageUri.includes('incremental');
248-
const responseData = await __request.call(
249-
this,
250-
method,
251-
pageUri,
252-
...args,
253-
);
248+
const responseData = await __request.call(this, method, pageUri, ...args);
254249
const nextPage = processPage(responseData);
255250
if (
256251
nextPage &&

0 commit comments

Comments
 (0)