diff --git a/components/WalletsCarousel.js b/components/WalletsCarousel.js index 557072268..d1a5b0e7f 100644 --- a/components/WalletsCarousel.js +++ b/components/WalletsCarousel.js @@ -241,6 +241,8 @@ const WalletCarouselItem = ({ item, index, onPress, handleLongPress, isSelectedW {item.getBalance() !== 0 && item.getLatestTransactionTime() === 0 ? loc.wallets.pull_to_refresh + : item.getTransactions().find(tx => tx.confirmations === 0) + ? loc.transactions.pending.toLowerCase() : transactionTimeToReadable(item.getLatestTransactionTime())} diff --git a/screen/wallets/reorderWallets.js b/screen/wallets/reorderWallets.js index f95eaed57..cb416ab4c 100644 --- a/screen/wallets/reorderWallets.js +++ b/screen/wallets/reorderWallets.js @@ -149,7 +149,9 @@ const ReorderWallets = () => { {loc.wallets.list_latest_transaction} - {transactionTimeToReadable(item.getLatestTransactionTime())} + {item.getTransactions().find(tx => tx.confirmations === 0) + ? loc.transactions.pending.toLowerCase() + : transactionTimeToReadable(item.getLatestTransactionTime())}