Skip to content

Commit 730d42e

Browse files
committed
k
1 parent a76acb3 commit 730d42e

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

web/src/app/admin/configuration/llm/LLMConfiguration.tsx

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,7 @@ function LLMProviderUpdateModal({
3232
existingLlmProvider?.name ||
3333
"Custom LLM Provider";
3434
return (
35-
<Modal
36-
width="max-w-4xl"
37-
title={`Setup ${providerName}`}
38-
onOutsideClick={() => onClose()}
39-
>
35+
<Modal title={`Setup ${providerName}`} onOutsideClick={() => onClose()}>
4036
<div className="max-h-[70vh] overflow-y-auto px-4">
4137
{llmProviderDescriptor ? (
4238
<LLMProviderUpdateForm

web/src/app/admin/embeddings/modals/ProviderCreationModal.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,6 @@ export function ProviderCreationModal({
173173

174174
return (
175175
<Modal
176-
width="max-w-4xl w-full"
177176
title={`Configure ${selectedProvider.provider_type}`}
178177
onOutsideClick={onCancel}
179178
icon={selectedProvider.icon}

0 commit comments

Comments
 (0)