sent to self text clean up

This commit is contained in:
julian 2023-03-08 13:29:05 -06:00
parent 79dc8e5329
commit 4c75836b4f
3 changed files with 6 additions and 0 deletions

View file

@ -814,6 +814,8 @@ class _DesktopTransactionCardRowState
} else {
return "Sending";
}
} else if (type == TransactionType.sentToSelf) {
return "Sent to self";
} else {
return type.name;
}

View file

@ -127,6 +127,8 @@ class _TransactionDetailsViewState
} else {
return "Sending";
}
} else if (type == TransactionType.sentToSelf) {
return "Sent to self";
} else {
return type.name;
}

View file

@ -82,6 +82,8 @@ class _TransactionCardState extends ConsumerState<TransactionCard> {
} else {
return "Sending";
}
} else if (type == TransactionType.sentToSelf) {
return "Sent to self";
} else {
return type.name;
}