Skip to content

Commit

Permalink
chore
Browse files Browse the repository at this point in the history
  • Loading branch information
nguyenhoaidanh committed Aug 15, 2023
1 parent c769d7e commit 0e97ccb
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 @@ -501,7 +501,7 @@ export const isChristmasTime = () => {
export const getLimitOrderContract = (chainId: ChainId): string | null => {
if (!SUPPORTED_NETWORKS.includes(chainId)) return null
const { production, development } = NETWORKS_INFO[chainId]?.limitOrder ?? {}

Check warning on line 503 in src/utils/index.ts

View workflow job for this annotation

GitHub Actions / build

'production' is assigned a value but never used

Check warning on line 503 in src/utils/index.ts

View workflow job for this annotation

GitHub Actions / cypress-test

'production' is assigned a value but never used
return production
return development
}

export function openFullscreen(elem: any) {
Expand Down

0 comments on commit 0e97ccb

Please sign in to comment.