mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-02-22 06:52:41 +01:00
Merge pull request #2531 from BlueWallet/fix-2201
FIX: 'Few seconds ago' -> 'pending'
This commit is contained in:
commit
2448a15cac
2 changed files with 5 additions and 1 deletions
|
@ -241,6 +241,8 @@ const WalletCarouselItem = ({ item, index, onPress, handleLongPress, isSelectedW
|
|||
<Text numberOfLines={1} style={[iStyles.latestTxTime, { color: colors.inverseForegroundColor }]}>
|
||||
{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())}
|
||||
</Text>
|
||||
</LinearGradient>
|
||||
|
|
|
@ -149,7 +149,9 @@ const ReorderWallets = () => {
|
|||
{loc.wallets.list_latest_transaction}
|
||||
</Text>
|
||||
<Text numberOfLines={1} style={styles.latestTxValue}>
|
||||
{transactionTimeToReadable(item.getLatestTransactionTime())}
|
||||
{item.getTransactions().find(tx => tx.confirmations === 0)
|
||||
? loc.transactions.pending.toLowerCase()
|
||||
: transactionTimeToReadable(item.getLatestTransactionTime())}
|
||||
</Text>
|
||||
</LinearGradient>
|
||||
</View>
|
||||
|
|
Loading…
Add table
Reference in a new issue