Skip to content
This repository has been archived by the owner on May 10, 2024. It is now read-only.

Commit

Permalink
Generic send for tx other case
Browse files Browse the repository at this point in the history
  • Loading branch information
StephenHeaps committed Nov 13, 2023
1 parent 39d69fe commit 6284392
Showing 1 changed file with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,15 @@ struct TransactionSummaryViewContainer: View {
time: parsedTransaction.transaction.createdTime
)
case .other:
EmptyView()
SendTransactionSummaryView(
sentFromAccountName: parsedTransaction.namedFromAddress,
token: nil,
network: parsedTransaction.network,
valueSent: nil,
fiatValueSent: nil,
status: parsedTransaction.transaction.txStatus,
time: parsedTransaction.transaction.createdTime
)
}
}
}
Expand Down

0 comments on commit 6284392

Please sign in to comment.