Skip to content

Commit

Permalink
fix: wrong type
Browse files Browse the repository at this point in the history
  • Loading branch information
infiniteflower committed Sep 20, 2024
1 parent 0dccb7c commit 447712a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/hooks/useTransactionDisplayData.js
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ export function useTransactionDisplayData(transactionGroup) {
category = TransactionGroupCategory.send;
title = t('send');
subtitle = t('toAddress', [shortenAddress(recipientAddress)]);
} else if (type === 'bridgeApprove') {
} else if (type === 'bridgeApproval') {
// TODO update type
title = 'Bridge Approval';
} else if (type === 'bridge') {
Expand Down

0 comments on commit 447712a

Please sign in to comment.