From 2e740ad7e42353238bec45a07ce6c2c10c8bed04 Mon Sep 17 00:00:00 2001 From: Anurag Saxena Date: Fri, 3 Apr 2026 21:53:11 -0400 Subject: [PATCH] fix: pass isFree prop to ModelRow for custom models (closes #461) (#480) --- src/app/(dashboard)/dashboard/providers/[id]/page.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/(dashboard)/dashboard/providers/[id]/page.js b/src/app/(dashboard)/dashboard/providers/[id]/page.js index d55adbe..5d6bb26 100644 --- a/src/app/(dashboard)/dashboard/providers/[id]/page.js +++ b/src/app/(dashboard)/dashboard/providers/[id]/page.js @@ -610,6 +610,7 @@ export default function ProviderDetailPage() { onTest={connections.length > 0 ? () => handleTestModel(model.id) : undefined} isTesting={testingModelId === model.id} isCustom + isFree={false} /> ))}