diff --git a/src/views/Wallet/views/AccountSend/components/PendingTransactions/index.js b/src/views/Wallet/views/AccountSend/components/PendingTransactions/index.js index 1fedbc22..4f92912f 100644 --- a/src/views/Wallet/views/AccountSend/components/PendingTransactions/index.js +++ b/src/views/Wallet/views/AccountSend/components/PendingTransactions/index.js @@ -62,7 +62,11 @@ class PendingTransactions extends Component { } getTransactionIconColors(tx: any) { - let iconColors = { }; + let iconColors = { + color: '', + background: '', + borderColor: '', + }; const bgColorFactory = new ColorHash({ lightness: 0.7 }); const textColorFactory = new ColorHash(); @@ -92,7 +96,6 @@ class PendingTransactions extends Component { borderColor: bgColorFactory.hex(tx.network), }; } - return iconColors; }