We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1dbbe8 commit 5ec3634Copy full SHA for 5ec3634
1 file changed
src/features/feed/components/Feed.tsx
@@ -28,10 +28,10 @@ export const Feed = () => {
28
const items = page.data
29
const result: FeedItemData[] = []
30
items.forEach((item, index) => {
31
- result.push(item)
32
- if (pageIndex == 0 && index === 2) {
+ if (pageIndex == 0 && index === 3) {
33
result.push({ type: 'ad', id: `ad-${pageIndex}-${index}` })
34
}
+ result.push(item)
35
})
36
37
return {
0 commit comments