From 440ed28b11c723604cbfa39b74e1ff19f55f6302 Mon Sep 17 00:00:00 2001 From: "P. Reis" Date: Thu, 5 Dec 2024 17:58:45 -0300 Subject: [PATCH] fix: use PureStatus instead of StatusContainer --- src/components/pure-status-list.tsx | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/components/pure-status-list.tsx b/src/components/pure-status-list.tsx index a3075e1b5..11a12907b 100644 --- a/src/components/pure-status-list.tsx +++ b/src/components/pure-status-list.tsx @@ -6,7 +6,6 @@ import { FormattedMessage } from 'react-intl'; import LoadGap from 'soapbox/components/load-gap.tsx'; import PureStatus from 'soapbox/components/pure-status.tsx'; import ScrollableList from 'soapbox/components/scrollable-list.tsx'; -import StatusContainer from 'soapbox/containers/status-container.tsx'; import { EntityTypes, Entities } from 'soapbox/entity-store/entities.ts'; import FeedSuggestions from 'soapbox/features/feed-suggestions/feed-suggestions.tsx'; import PlaceholderStatus from 'soapbox/features/placeholder/components/placeholder-status.tsx'; @@ -154,15 +153,15 @@ const PureStatusList: React.FC = ({ if (!featuredStatuses) return []; return (featuredStatuses ?? []).map(status => ( - )); };