fix: 'upcoming' titles failing to fetch

wasn't returning "Page" from the anilist json response
This commit is contained in:
2025-12-18 08:49:17 -05:00
parent 4c96f58cb0
commit d66903400d
3 changed files with 14 additions and 8 deletions

View File

@@ -260,7 +260,8 @@ export const NextSeasonPopularQuery = graphql(
$nextYear: Int
$limit: Int!
) {
Page(page: 1, perPage: $limit) {
$page: Int!
Page(page: $page, perPage: $limit) {
media(
season: $nextSeason
seasonYear: $nextYear