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 3294d3c6a2
3 changed files with 14 additions and 8 deletions

View File

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