From 6acc7332c6909030c1a2c69c561c27c39ff1f1ff Mon Sep 17 00:00:00 2001 From: dragarcia Date: Sat, 11 Mar 2023 23:44:34 +0800 Subject: [PATCH] hotfix: temporarily disable East US region for project creation --- studio/lib/constants/infrastructure.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/studio/lib/constants/infrastructure.ts b/studio/lib/constants/infrastructure.ts index 437fff2180..cb5a7cdd07 100644 --- a/studio/lib/constants/infrastructure.ts +++ b/studio/lib/constants/infrastructure.ts @@ -3,7 +3,7 @@ // and are afterward never referred to export const REGIONS = { WEST_US: 'West US (North California)', - EAST_US: 'East US (North Virginia)', + // EAST_US: 'East US (North Virginia)', CENTRAL_CANADA: 'Canada (Central)', WEST_EU: 'West EU (Ireland)', WEST_EU_2: 'West EU (London)', @@ -19,7 +19,7 @@ export const REGIONS = { } export const REGIONS_DEFAULT = - process.env.NEXT_PUBLIC_ENVIRONMENT !== 'prod' ? REGIONS.SOUTHEAST_ASIA : REGIONS.EAST_US + process.env.NEXT_PUBLIC_ENVIRONMENT !== 'prod' ? REGIONS.SOUTHEAST_ASIA : REGIONS.WEST_US export const PRICING_TIER_LABELS = { FREE: 'Free',