💄 style: added eu-central-1 region for bedrock (#6555)

This commit is contained in:
Arjun Reddy
2025-02-27 05:31:00 +00:00
committed by GitHub
parent 4af5b2775c
commit 6f1e599e2f
3 changed files with 3 additions and 3 deletions
@@ -54,7 +54,7 @@ export const useBedrockProvider = (): ProviderItem => {
children: (
<Select
allowClear
options={['us-east-1', 'us-west-2', 'ap-southeast-1'].map((i) => ({
options={['us-east-1', 'us-west-2', 'ap-southeast-1', 'eu-central-1'].map((i) => ({
label: i,
value: i,
}))}
@@ -68,7 +68,7 @@ const useBedrockCard = (): ProviderItem => {
) : (
<Select
allowClear
options={['us-east-1', 'us-west-2', 'ap-southeast-1'].map((i) => ({
options={['us-east-1', 'us-west-2', 'ap-southeast-1', 'eu-central-1'].map((i) => ({
label: i,
value: i,
}))}
@@ -77,7 +77,7 @@ const BedrockForm = memo(() => {
onChange={(region) => {
setConfig('bedrock', { region });
}}
options={['us-east-1', 'us-west-2', 'ap-southeast-1'].map((i) => ({
options={['us-east-1', 'us-west-2', 'ap-southeast-1', 'eu-central-1'].map((i) => ({
label: i,
value: i,
}))}