diff options
| author | Factiven <[email protected]> | 2023-04-23 23:43:51 +0700 |
|---|---|---|
| committer | Factiven <[email protected]> | 2023-04-23 23:43:51 +0700 |
| commit | 20becc8cd09bfb04694999219e451bc1a21838c8 (patch) | |
| tree | 61457f1c7eff8890e18da4752c0a44b782d9e403 | |
| parent | Added Infinite Scroll at [param].js (diff) | |
| download | moopa-20becc8cd09bfb04694999219e451bc1a21838c8.tar.xz moopa-20becc8cd09bfb04694999219e451bc1a21838c8.zip | |
Ketinggalan
| -rw-r--r-- | lib/useAnilist.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/useAnilist.js b/lib/useAnilist.js index 5f21783..f586b5c 100644 --- a/lib/useAnilist.js +++ b/lib/useAnilist.js @@ -201,6 +201,7 @@ export function useAniList(session, stats) { seasonYear, season, genres, + page, perPage, sort ) { @@ -219,7 +220,7 @@ export function useAniList(session, stats) { genres: genres, perPage: perPage, sort: sort, - page: 1, + page: page, }, }), }); |