fix: respect session prefetch page size (#1332)

Co-authored-by: Isaac Sanchez <isanchez-hawkins@arize.com>
This commit is contained in:
Isaac Sanchez-Hawkins
2026-05-19 17:39:37 +03:00
committed by GitHub
co-authored by Isaac Sanchez
parent 81c72df8ea
commit 65e288bb71
2 changed files with 24 additions and 0 deletions
@@ -35,6 +35,7 @@ export function shouldSkipSessionPrefetch(input: {
if (!input.info) return true
if (input.info.complete) return true
if (input.info.limit > input.pageSize) return true
if (input.info.limit < input.pageSize) return false
} else {
if (!input.info) return false
}