diff --git a/src/components/timeline.jsx b/src/components/timeline.jsx index 56ad9b6b..9d7984ba 100644 --- a/src/components/timeline.jsx +++ b/src/components/timeline.jsx @@ -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); }