Skip to content

Commit 47f751a

Browse files
authored
Merge pull request #5580 from EdgeApp/jon/fix/tx-txt
Add timestamp while syncing
2 parents d3e11b5 + 7973d15 commit 47f751a

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
- fixed: `NotificationCenterScene` could crash if there was an undismissed new token notification and the associated wallet no longer existed
1515
- removed: Disable Fantom transaction list
1616
- fixed: Show the correct username in the "Forget Account" modal.
17+
- fixed: `TransactionListRow` missing timestamp while syncing
1718

1819
## 4.27.2 (2025-05-13)
1920

src/components/themed/TransactionListRow.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ function TransactionViewInner(props: TransactionViewInnerProps) {
156156
)
157157

158158
// Pending Text and Style
159-
const timeText = transaction.confirmations === 'confirmed' ? unixToLocaleDateTime(transaction.date).time : null
159+
const timeText = transaction.confirmations === 'confirmed' || transaction.confirmations === 'syncing' ? unixToLocaleDateTime(transaction.date).time : null
160160
const confirmationText = getConfirmationText(currencyInfo, transaction)
161161

162162
const confirmationStyle =

0 commit comments

Comments
 (0)