Updated StatusList TimelineInjections to be every 7 instead of 18

• Updated:
- StatusList TimelineInjections to be every 7 instead of 18
This commit is contained in:
mgabdev 2020-11-02 14:30:26 -06:00
parent 8d13b9d020
commit be0906b861
1 changed files with 1 additions and 1 deletions

View File

@ -214,7 +214,7 @@ class StatusList extends ImmutablePureComponent {
} }
} }
if (i % 18 === 0 && i !== 0 && scrollKey === 'home_timeline') { if (i % 7 === 0 && i !== 0 && scrollKey === 'home_timeline') {
scrollableContent.push( scrollableContent.push(
<TimelineInjectionBase index={i} key={`timeline-injection-${i}`} /> <TimelineInjectionBase index={i} key={`timeline-injection-${i}`} />
) )