Skip to content

Commit

Permalink
Merge pull request #12 from argentlabs/fix/universal-link
Browse files Browse the repository at this point in the history
fix: universal link schema
  • Loading branch information
bluecco authored Oct 12, 2023
2 parents c8b9646 + 0bbeb06 commit a3de4c6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/connectors/argentMobile/modal/argentModal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ interface Urls {

class ArgentModal {
public bridgeUrl = "https://login.argent.xyz"
public mobileUrl = "https://www.argent.xyz/"
public mobileUrl = "argent://"
public type: "overlay" | "window" = "overlay"
public wcUri?: string

Expand Down
2 changes: 1 addition & 1 deletion src/connectors/argentMobile/modal/login.ts
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,6 @@ const getMobileUrl = (chainId: unknown) => {
String(chainId).startsWith(Network.SN_MAIN) ||
chainIdNumber === 1 // mainnet numeric value
) {
return "https://www.argent.xyz/"
return "argent://"
}
}

0 comments on commit a3de4c6

Please sign in to comment.