This commit is contained in:
parent
3c1f86af40
commit
6f69bc69c9
|
|
@ -543,7 +543,7 @@ export const ProfileSettings: FC<ProfileSettingsProps> = ({}) => {
|
|||
<Label>{t("profile.azureOpenAIKeySetByAdmin")}</Label>
|
||||
) : (
|
||||
<Input
|
||||
placeholder="Azure OpenAI API Key"
|
||||
placeholder={t("profile.azureOpenaiApiKey")}
|
||||
type="password"
|
||||
value={azureOpenaiAPIKey}
|
||||
onChange={e => setAzureOpenaiAPIKey(e.target.value)}
|
||||
|
|
@ -556,7 +556,7 @@ export const ProfileSettings: FC<ProfileSettingsProps> = ({}) => {
|
|||
<Label>{t("profile.openAIAPIKeySetByAdmin")}</Label>
|
||||
) : (
|
||||
<Input
|
||||
placeholder="OpenAI API Key"
|
||||
placeholder={t("profile.openaiApiKey")}
|
||||
type="password"
|
||||
value={openaiAPIKey}
|
||||
onChange={e => setOpenaiAPIKey(e.target.value)}
|
||||
|
|
|
|||
Loading…
Reference in New Issue