From 3da97268d7099bcbf6331490198ece262c2e7c0f Mon Sep 17 00:00:00 2001 From: Evan Hahn <69474926+EvanHahn-Signal@users.noreply.github.com> Date: Thu, 6 May 2021 14:15:04 -0500 Subject: [PATCH] doesn't need to "filter" 3 of its smart components --- ts/state/smart/Timeline.tsx | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/ts/state/smart/Timeline.tsx b/ts/state/smart/Timeline.tsx index e6c9c5f8a..9f1c8f611 100644 --- a/ts/state/smart/Timeline.tsx +++ b/ts/state/smart/Timeline.tsx @@ -36,9 +36,6 @@ import { assert } from '../../util/assert'; /* eslint-disable @typescript-eslint/no-explicit-any */ const FilteredSmartTimelineItem = SmartTimelineItem as any; const FilteredSmartTypingBubble = SmartTypingBubble as any; -const FilteredSmartLastSeenIndicator = SmartLastSeenIndicator as any; -const FilteredSmartHeroRow = SmartHeroRow as any; -const FilteredSmartTimelineLoadingRow = SmartTimelineLoadingRow as any; /* eslint-enable @typescript-eslint/no-explicit-any */ type ExternalProps = { @@ -65,7 +62,7 @@ function renderItem( } function renderLastSeenIndicator(id: string): JSX.Element { - return ; + return ; } function renderHeroRow( id: string, @@ -74,7 +71,7 @@ function renderHeroRow( updateSharedGroups: () => unknown ): JSX.Element { return ( - ; + return ; } function renderTypingBubble(id: string): JSX.Element { return ;