fix: StageTabView limit 500→200 to stay within API max
This commit is contained in:
parent
995d0c900d
commit
5a71539a2b
1 changed files with 1 additions and 1 deletions
|
|
@ -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,
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue