Fix items not updating when items count = 0
This commit is contained in:
parent
f67fdd5759
commit
97f7a066e2
|
@ -53,7 +53,7 @@ function Timeline({
|
|||
(async () => {
|
||||
try {
|
||||
let { done, value } = await fetchItems(firstLoad);
|
||||
if (value?.length) {
|
||||
if (Array.isArray(value)) {
|
||||
if (boostsCarousel) {
|
||||
value = groupBoosts(value);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue