From b96c7e90fe539f84bb2ade7a1787bb7e1a854960 Mon Sep 17 00:00:00 2001 From: Evan Hahn <69474926+EvanHahn-Signal@users.noreply.github.com> Date: Tue, 22 Feb 2022 14:32:47 -0600 Subject: [PATCH] Remove `` logging when row count is 0 --- ts/components/conversation/Timeline.tsx | 3 --- 1 file changed, 3 deletions(-) diff --git a/ts/components/conversation/Timeline.tsx b/ts/components/conversation/Timeline.tsx index cc400219ab..0aa83268dc 100644 --- a/ts/components/conversation/Timeline.tsx +++ b/ts/components/conversation/Timeline.tsx @@ -10,8 +10,6 @@ import type { Grid, ListRowProps } from 'react-virtualized'; import { AutoSizer, CellMeasurer, List } 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'; @@ -1288,7 +1286,6 @@ export class Timeline extends React.PureComponent { const scrollToIndex = this.getScrollTarget(); if (!items || rowCount === 0) { - log.error(' row count is 0'); return null; }