From 61a8e53fbaba23c2bc743267a8e684b81b82b085 Mon Sep 17 00:00:00 2001 From: meganii Date: Mon, 19 Sep 2022 09:53:16 +0900 Subject: [PATCH] Fix parameter name --- src/App.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.js b/src/App.js index 28a4223..20866a9 100644 --- a/src/App.js +++ b/src/App.js @@ -35,7 +35,7 @@ const paginatedRequest = async (url, method = 'GET', body = '') => { } if (out.meta.next_token) { - url.searchParams.set('paginationToken', out.response?.meta.next_token); + url.searchParams.set('pagination_token', out.meta.next_token); } const response = await request(url, method, body);