@ -802,11 +802,8 @@ export class PortfolioService {
const stakeRewards = getSum(
activities
.filter(({ SymbolProfile }) => {
return symbol === SymbolProfile.symbol;
})
.filter(({ type }) => {
return type === 'STAKE';
.filter(({ SymbolProfile, type }) => {
return symbol === SymbolProfile.symbol && type === 'STAKE';
.map(({ quantity }) => {
return new Big(quantity);