diff --git a/src/components/views/elements/LazyRenderList.js b/src/components/views/elements/LazyRenderList.js index ec56b9a532..b7916510a4 100644 --- a/src/components/views/elements/LazyRenderList.js +++ b/src/components/views/elements/LazyRenderList.js @@ -80,7 +80,7 @@ export default class LazyRenderList extends React.Component { const {renderRange} = this.state; const paddingTop = renderRange.topCount * itemHeight; const paddingBottom = renderRange.bottomCount * itemHeight; - const renderedItems = items.slice( + const renderedItems = (items || []).slice( renderRange.topCount, renderRange.topCount + renderRange.renderCount, );