From 1b8dcd41decf7249a7a8f33aeb75b4e12159c390 Mon Sep 17 00:00:00 2001 From: Bryan Helmkamp Date: Mon, 25 May 2026 17:35:14 -0400 Subject: [PATCH] fix(web): hide runs list pager when pagination isn't relevant Show the pager only when there's actually more than one page or the user is past page 1, replacing the hardcoded total >= 25 threshold. Co-Authored-By: Claude Opus 4.7 (1M context) --- apps/fabro-web/app/components/runs-list/runs-list-view.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/fabro-web/app/components/runs-list/runs-list-view.tsx b/apps/fabro-web/app/components/runs-list/runs-list-view.tsx index 6437c2cfb..b311f0958 100644 --- a/apps/fabro-web/app/components/runs-list/runs-list-view.tsx +++ b/apps/fabro-web/app/components/runs-list/runs-list-view.tsx @@ -190,7 +190,7 @@ export function RunsListView({ /> )} - {(total == null || total >= 25) && ( + {(hasMore || (pageCount != null && pageCount > 1) || page > 1) && (