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 27, 2024
1 parent 25281e7 commit 4432d25
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 4432d25

Please sign in to comment.