This commit is contained in:
pablodanswer 2024-10-24 15:11:02 -07:00
parent a76acb3c18
commit 730d42e6b5
2 changed files with 1 additions and 6 deletions

View File

@ -32,11 +32,7 @@ function LLMProviderUpdateModal({
existingLlmProvider?.name ||
"Custom LLM Provider";
return (
<Modal
width="max-w-4xl"
title={`Setup ${providerName}`}
onOutsideClick={() => onClose()}
>
<Modal title={`Setup ${providerName}`} onOutsideClick={() => onClose()}>
<div className="max-h-[70vh] overflow-y-auto px-4">
{llmProviderDescriptor ? (
<LLMProviderUpdateForm

View File

@ -173,7 +173,6 @@ export function ProviderCreationModal({
return (
<Modal
width="max-w-4xl w-full"
title={`Configure ${selectedProvider.provider_type}`}
onOutsideClick={onCancel}
icon={selectedProvider.icon}