From 1b43b995887ab8b3be6cddac269de59802631f3f Mon Sep 17 00:00:00 2001 From: Danh Date: Wed, 19 Jul 2023 16:02:16 +0700 Subject: [PATCH] test --- src/utils/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/index.ts b/src/utils/index.ts index 054cc1c39a..82730c1cd1 100644 --- a/src/utils/index.ts +++ b/src/utils/index.ts @@ -528,7 +528,7 @@ export const isChristmasTime = () => { export const getLimitOrderContract = (chainId: ChainId) => { const { production, development } = NETWORKS_INFO_CONFIG[chainId]?.limitOrder ?? {} - return ENV_KEY === 'production' || ENV_KEY === 'staging' ? production : development + return ENV_KEY === 'production' ? production : development } export function openFullscreen(elem: any) {