Skip to content

Commit

Permalink
fix: connect wallet on stellar
Browse files Browse the repository at this point in the history
  • Loading branch information
HrithikSampson committed Sep 23, 2024
1 parent 461f94c commit 83b7611
Showing 1 changed file with 9 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -327,9 +327,15 @@ export const QRDonationCard: FC<QRDonationCardProps> = ({
<ConnectWallet>
<IconWalletOutline24 color={neutralColors.gray[700]} />
{formatMessage({
id: hasActiveQFRound
? 'label.please_connect_your_wallet_to_win_givbacks_and_match'
: 'label.please_connect_your_wallet_to_win_givbacks',
id:
hasActiveQFRound &&
!!activeStartedRound?.eligibleNetworks?.includes(
config.NON_EVM_NETWORKS_CONFIG[
ChainType.STELLAR
].networkId,
)
? 'label.please_connect_your_wallet_to_win_givbacks_and_match'
: 'label.please_connect_your_wallet_to_win_givbacks',
})}
</ConnectWallet>
)}
Expand Down

0 comments on commit 83b7611

Please sign in to comment.