mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-01-29 21:55:58 +00:00
sent to self text clean up
This commit is contained in:
parent
79dc8e5329
commit
4c75836b4f
3 changed files with 6 additions and 0 deletions
|
@ -814,6 +814,8 @@ class _DesktopTransactionCardRowState
|
|||
} else {
|
||||
return "Sending";
|
||||
}
|
||||
} else if (type == TransactionType.sentToSelf) {
|
||||
return "Sent to self";
|
||||
} else {
|
||||
return type.name;
|
||||
}
|
||||
|
|
|
@ -127,6 +127,8 @@ class _TransactionDetailsViewState
|
|||
} else {
|
||||
return "Sending";
|
||||
}
|
||||
} else if (type == TransactionType.sentToSelf) {
|
||||
return "Sent to self";
|
||||
} else {
|
||||
return type.name;
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue