We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ccf48d commit afacfe0Copy full SHA for afacfe0
shared/constants/bridge.ts
@@ -67,11 +67,9 @@ export type AllowedBridgeChainIds =
67
| (typeof ALLOWED_BRIDGE_CHAIN_IDS)[number]
68
| (typeof ALLOWED_BRIDGE_CHAIN_IDS_IN_CAIP)[number];
69
70
-export const BRIDGE_API_BASE_URL =
71
- process.env.BRIDGE_API_BASE_URL ??
72
- (process.env.BRIDGE_USE_DEV_APIS
73
- ? BRIDGE_DEV_API_BASE_URL
74
- : BRIDGE_PROD_API_BASE_URL);
+export const BRIDGE_API_BASE_URL = process.env.BRIDGE_USE_DEV_APIS
+ ? BRIDGE_DEV_API_BASE_URL
+ : BRIDGE_PROD_API_BASE_URL;
75
76
export const BRIDGE_CHAIN_ID_TO_NETWORK_IMAGE_MAP: Record<
77
(typeof ALLOWED_BRIDGE_CHAIN_IDS_IN_CAIP)[number],
0 commit comments