Update transactions.js

This commit is contained in:
Marcos Rodriguez Vélez 2022-08-06 14:21:51 -04:00
parent 0a94b1365b
commit 1f5313ff56
No known key found for this signature in database
GPG key ID: 0D64671698D11C5C

View file

@ -449,9 +449,7 @@ const WalletTransactions = () => {
};
const onManageFundsPressed = ({ id }) => {
if (id === TransactionsNavigationHeader.actionKeys.Exchange) {
Linking.openURL('https://zigzag.io/?utm_source=integration&utm_medium=bluewallet&utm_campaign=withdrawLink');
} else if (id === TransactionsNavigationHeader.actionKeys.Refill) {
if (id === TransactionsNavigationHeader.actionKeys.Refill) {
const availableWallets = [...wallets.filter(item => item.chain === Chain.ONCHAIN && item.allowSend())];
if (availableWallets.length === 0) {
alert(loc.lnd.refill_create);