fix: StageTabView limit 500→200 to stay within API max

This commit is contained in:
jlightner 2026-04-03 03:32:34 +00:00
parent 995d0c900d
commit 5a71539a2b

View file

@ -544,7 +544,7 @@ function StageTabView({ videoId, runId, status }: { videoId: string; runId: stri
try {
const res = await fetchPipelineEvents(videoId, {
offset: 0,
limit: 500,
limit: 200,
order: "asc",
run_id: runId,
});