diff --git a/apps/browser-extension-wallet/src/views/browser-view/features/activity/helpers/common-tx-transformer.ts b/apps/browser-extension-wallet/src/views/browser-view/features/activity/helpers/common-tx-transformer.ts index fecd9d0c19..1d93623699 100644 --- a/apps/browser-extension-wallet/src/views/browser-view/features/activity/helpers/common-tx-transformer.ts +++ b/apps/browser-extension-wallet/src/views/browser-view/features/activity/helpers/common-tx-transformer.ts @@ -70,7 +70,12 @@ const splitDelegationTx = (tx: TransformedActivity): TransformedTransactionActiv ]; } - return []; + return [ + { + ...tx, + type: 'delegation' + } + ]; }; const transformTransactionStatus = (status: Wallet.TransactionStatus): ActivityStatus => {