From 41ff569260ea173baf43c156caf4a5c26ccfe7c4 Mon Sep 17 00:00:00 2001 From: diegosouzapw Date: Fri, 1 May 2026 21:48:20 -0300 Subject: [PATCH] fix: resolve maxConcurrent display and binding bug (#1859) --- src/app/(dashboard)/dashboard/providers/[id]/page.tsx | 9 +++++++++ src/app/api/providers/[id]/route.ts | 4 ++++ 2 files changed, 13 insertions(+) diff --git a/src/app/(dashboard)/dashboard/providers/[id]/page.tsx b/src/app/(dashboard)/dashboard/providers/[id]/page.tsx index 34c9cc37cc..5e118a8764 100644 --- a/src/app/(dashboard)/dashboard/providers/[id]/page.tsx +++ b/src/app/(dashboard)/dashboard/providers/[id]/page.tsx @@ -5151,6 +5151,15 @@ function ConnectionRow({ {t("autoPriority", { priority: connection.globalPriority })} )} + {connection.maxConcurrent != null && connection.maxConcurrent > 0 && ( + + dynamic_feed + {connection.maxConcurrent} + + )} {/* Rate Limit Protection — inline toggle with label */} |