diff --git a/apps/trading/components/rewards-container/active-rewards.tsx b/apps/trading/components/rewards-container/active-rewards.tsx index 39d8f3ef1..34ade616f 100644 --- a/apps/trading/components/rewards-container/active-rewards.tsx +++ b/apps/trading/components/rewards-container/active-rewards.tsx @@ -94,6 +94,15 @@ export const applyFilter = ( ) { return true; } + + // if the transfer is a staking reward then it should be displayed + if ( + !transfer.kind.dispatchStrategy && + transfer.toAccountType === AccountType.ACCOUNT_TYPE_GLOBAL_REWARD + ) { + return true; + } + return false; };