From aecfbb76df538079475fcefdc998f8687eb15bec Mon Sep 17 00:00:00 2001 From: Szymon Lesisz Date: Thu, 31 Oct 2019 15:50:19 +0100 Subject: [PATCH] enable pendingTxs in ripple send form --- .../Wallet/views/Account/Send/ripple/index.js | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/src/views/Wallet/views/Account/Send/ripple/index.js b/src/views/Wallet/views/Account/Send/ripple/index.js index e7b1d427..c9aa699e 100644 --- a/src/views/Wallet/views/Account/Send/ripple/index.js +++ b/src/views/Wallet/views/Account/Send/ripple/index.js @@ -489,14 +489,13 @@ const AccountSend = (props: Props) => { )} - {props.selectedAccount.pending.length > 0 || - (account.imported && ( - - ))} + {props.selectedAccount.pending.length > 0 && ( + + )} ); };