File tree 2 files changed +2
-1
lines changed 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 14
14
- fixed: ` NotificationCenterScene ` could crash if there was an undismissed new token notification and the associated wallet no longer existed
15
15
- removed: Disable Fantom transaction list
16
16
- fixed: Show the correct username in the "Forget Account" modal.
17
+ - fixed: ` TransactionListRow ` missing timestamp while syncing
17
18
18
19
## 4.27.2 (2025-05-13)
19
20
Original file line number Diff line number Diff line change @@ -156,7 +156,7 @@ function TransactionViewInner(props: TransactionViewInnerProps) {
156
156
)
157
157
158
158
// 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
160
160
const confirmationText = getConfirmationText ( currencyInfo , transaction )
161
161
162
162
const confirmationStyle =
You can’t perform that action at this time.
0 commit comments