Skip to content

Commit

Permalink
fix: condition
Browse files Browse the repository at this point in the history
  • Loading branch information
IsaccoSordo committed Aug 12, 2024
1 parent 7fc059c commit 5a657bb
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions packages/beacon-ui/src/ui/alert/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -891,12 +891,12 @@ const openAlert = async (config: AlertConfig): Promise<string> => {
(currentWallet()?.types.length as number) <= 1 && (
<QRCode isMobile={true} />
)}
{(isMobile() &&
currentWallet()?.types.includes('ios') &&
!currentWallet()?.supportedInteractionStandards?.includes(
'wallet_connect'
)) ||
isWCWorking() ? (
{isMobile() &&
currentWallet()?.types.includes('ios') &&
(!currentWallet()?.supportedInteractionStandards?.includes(
'wallet_connect'
) ||
isWCWorking()) ? (
<Info
border
title={`Connect with ${currentWallet()?.name} Mobile`}
Expand Down

0 comments on commit 5a657bb

Please sign in to comment.