diff --git a/app/components/settings/ButtonSettings.tsx b/app/components/settings/ButtonSettings.tsx index 3352fbf..3724a15 100644 --- a/app/components/settings/ButtonSettings.tsx +++ b/app/components/settings/ButtonSettings.tsx @@ -9,9 +9,9 @@ interface ButtonSettingProps { const ButtonSetting: React.FC = ({ label, onClick, className }) => { return (
- diff --git a/app/components/settings/Settings.tsx b/app/components/settings/Settings.tsx index 530b3da..0d77b0b 100644 --- a/app/components/settings/Settings.tsx +++ b/app/components/settings/Settings.tsx @@ -618,6 +618,11 @@ const Settings: React.FC<{ closeSettings: () => void; accountName: string }> = ( type="text" // Input type placeholder={localStorage.getItem('mistral') || "Enter the API key"} /> +
+ + + +
void; accountName: string }> = ( type="text" // Input type placeholder={localStorage.getItem('openai') || "Enter the API key"} /> +
+ + + +
void; accountName: string }> = ( type="text" // Input type placeholder={localStorage.getItem('anthropic') || "Enter the API key"} /> +
+ + + +
void; accountName: string }> = ( type="text" // Input type placeholder={localStorage.getItem('google') || "Enter the API key"} /> +
);