diff --git a/ts/components/conversation/Timeline.tsx b/ts/components/conversation/Timeline.tsx index f20860813..7a4ec7028 100644 --- a/ts/components/conversation/Timeline.tsx +++ b/ts/components/conversation/Timeline.tsx @@ -15,6 +15,8 @@ import { } from 'react-virtualized'; import Measure from 'react-measure'; +import * as log from '../../logging/log'; + import { ScrollDownButton } from './ScrollDownButton'; import type { AssertProps, LocalizerType, ThemeType } from '../../types/Util'; @@ -1289,6 +1291,7 @@ export class Timeline extends React.PureComponent { const scrollToIndex = this.getScrollTarget(); if (!items || rowCount === 0) { + log.error(' row count is 0'); return null; }