Skip to content

Commit

Permalink
staging env fix
Browse files Browse the repository at this point in the history
  • Loading branch information
vnaysngh-mudrex committed Dec 21, 2023
1 parent 536858a commit 30519fe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/connectors/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export const isStagingEnvironment = () => {
return false
}
const host = new URL(String(location))?.host || ''
return host === 'app.staging.jediswap.xyz'
return host === 'staging.e2.jediswap.xyz/'
}

export const webWalletUrl = isTestnetEnvironment() ? 'https://web.hydrogen.argent47.net/' : 'https://web.argent.xyz/'
Expand Down
2 changes: 1 addition & 1 deletion src/constants/lists.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,4 +76,4 @@ export const DEFAULT_INACTIVE_LIST_URLS: string[] = [
...UNSUPPORTED_LIST_URLS,
]

export const DEFAULT_LIST_OF_LISTS: string[] = [...DEFAULT_TOKEN_LIST_URL]
export const DEFAULT_LIST_OF_LISTS: string[] = [DEFAULT_TOKEN_LIST_URL]

0 comments on commit 30519fe

Please sign in to comment.