Commit 4bbb05e5 authored by Mark Harding's avatar Mark Harding

(chore): remove 40 post boost cap

parent a8b4cc9a
No related merge requests found
Pipeline #74537998 waiting for manual action with stages
in 45 minutes and 49 seconds
......@@ -299,6 +299,6 @@ export class NewsfeedSortedComponent implements OnInit, OnDestroy {
// return false;
//}
return (i > 0 && (i % 5) === 0 && i <= 80) || i === 1;
return (i > 0 && (i % 5) === 0) || i === 1;
}
}
......@@ -11,7 +11,7 @@
<ng-container *ngFor="let activity$ of (feedsService.feed | async); let i = index">
<ng-container *mIfFeature="'es-feeds'">
<m-featured-content
*ngIf="(i > 0 && (i % 8) === 0 && i <= 40) || i === 2"
*ngIf="(i > 0 && (i % 8) === 0) || i === 2"
[slot]="i + 1"
></m-featured-content>
</ng-container>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment