Skip to content

Commit

Permalink
fix: universal link schema
Browse files Browse the repository at this point in the history
  • Loading branch information
bluecco committed Oct 12, 2023
1 parent c8b9646 commit 0bbeb06
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 0bbeb06

Please sign in to comment.