From f5a3405ca8ef46366bf6b6d766448e3de508161c Mon Sep 17 00:00:00 2001 From: itolstov Date: Sun, 12 Jul 2026 22:41:25 -0300 Subject: [PATCH] fix(combos): keep combos page within frozen size cap Co-authored-by: diegosouzapw <8016841+diegosouzapw@users.noreply.github.com> --- src/app/(dashboard)/dashboard/combos/page.tsx | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/app/(dashboard)/dashboard/combos/page.tsx b/src/app/(dashboard)/dashboard/combos/page.tsx index 33516b851a..6d132c872f 100644 --- a/src/app/(dashboard)/dashboard/combos/page.tsx +++ b/src/app/(dashboard)/dashboard/combos/page.tsx @@ -769,9 +769,6 @@ export default function CombosPage() { if (combosRes.ok) setCombos((combosData.combos || []).filter((c) => !c.isHidden)); if (providersRes.ok) { - // Exclude connections the user has explicitly disabled (isActive === false) - // before applying the test-status filter — a disabled connection can still - // carry a stale "active"/"success" testStatus from before it was disabled. const active = filterActiveConnections(providersData.connections || []).filter( (c) => c.testStatus === "active" || c.testStatus === "success" );