Skip to content

Commit

Permalink
fix(transfer): fix missing pending time
Browse files Browse the repository at this point in the history
  • Loading branch information
pwltr committed May 28, 2024
1 parent 003e0a7 commit 9383513
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/screens/Activity/ListItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ const OnchainListItem = ({
description = t('activity_low_fee');
}

if (transferToSavings) {
if (transferToSavings && !transferToSpending) {
title = t('activity_transfer');
if (transferToSavings.status === ETransferStatus.done) {
description = t('activity_transfer_savings_done');
Expand Down

0 comments on commit 9383513

Please sign in to comment.