Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
nguyenhoaidanh committed Jul 19, 2023
1 parent 26bfd05 commit 1b43b99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 1b43b99

Please sign in to comment.