Skip to content

Commit 02d8ae0

Browse files
committed
fix(suite): eth failed tx heading
1 parent 769cb04 commit 02d8ae0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/suite/src/components/wallet/TransactionItem/TransactionHeader.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ const getSolTransactionStakeTypeName = (stakeType: StakeType) => {
8484
export const TransactionHeader = ({ transaction, isPending }: TransactionHeaderProps) => {
8585
const { translationString } = useTranslation();
8686

87-
if (transaction?.ethereumSpecific?.parsedData?.name) {
87+
if (transaction?.ethereumSpecific?.parsedData?.name && transaction.type !== 'failed') {
8888
return (
8989
<Row gap={spacings.xxs} overflow="hidden">
9090
<span>{transaction.ethereumSpecific.parsedData.name}</span>

0 commit comments

Comments
 (0)