diff --git a/src/app/(dashboard)/dashboard/combos/page.tsx b/src/app/(dashboard)/dashboard/combos/page.tsx index 03fbae3c79..f0ac3c7a5a 100644 --- a/src/app/(dashboard)/dashboard/combos/page.tsx +++ b/src/app/(dashboard)/dashboard/combos/page.tsx @@ -631,10 +631,10 @@ function ComboFormModal({ isOpen, combo, onClose, onSave, activeProviders }) { const parts = modelValue.split("/"); if (parts.length !== 2) return modelValue; - const [providerPart, modelId] = parts; + const [providerIdentifier, modelId] = parts; // Match by node ID or prefix const matchedNode = providerNodes.find( - (node) => node.id === providerPart || node.prefix === providerPart + (node) => node.id === providerIdentifier || node.prefix === providerIdentifier ); if (matchedNode) {