Skip to content

Commit

Permalink
fix: unlock hybrid view
Browse files Browse the repository at this point in the history
  • Loading branch information
IsaccoSordo committed Aug 12, 2024
1 parent 7293e4a commit 2b1a2d7
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions packages/beacon-ui/src/ui/alert/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -599,6 +599,13 @@ const openAlert = async (config: AlertConfig): Promise<string> => {
if (wallet && wallet.supportedInteractionStandards?.includes('wallet_connect')) {
const uri = await generateLink()

if (!uri && wallet?.name.toLowerCase().includes('kukai')) {
setCodeQR('error')
setInstallState(wallet)
setIsLoading(false)
return
}

if (uri) {
if (_isMobileOS && wallet.types.includes('ios') && wallet.types.length === 1) {
handleDeepLinking(wallet, uri)
Expand Down

0 comments on commit 2b1a2d7

Please sign in to comment.