diff --git a/webview-ui/src/components/settings/providers/Azure.tsx b/webview-ui/src/components/settings/providers/Azure.tsx index d9a167c95c..b96dc29fc9 100644 --- a/webview-ui/src/components/settings/providers/Azure.tsx +++ b/webview-ui/src/components/settings/providers/Azure.tsx @@ -14,7 +14,7 @@ type AzureProps = { simplifySettings?: boolean } -export const Azure = ({ apiConfiguration, setApiConfigurationField }: AzureProps) => { +export const Azure = ({ apiConfiguration, setApiConfigurationField, simplifySettings }: AzureProps) => { const { t } = useAppTranslation() const handleInputChange = useCallback( @@ -76,16 +76,20 @@ export const Azure = ({ apiConfiguration, setApiConfigurationField }: AzureProps
{t("settings:providers.apiKeyStorageNotice")}
- - - -
- {t("settings:providers.azureApiVersionDescription")} -
+ {!simplifySettings && ( + <> + + + +
+ {t("settings:providers.azureApiVersionDescription")} +
+ + )} ) }