From b9d05f546c3b19d976f0c7c7eeaf89b49cdc42a8 Mon Sep 17 00:00:00 2001 From: Justin Date: Fri, 1 Jul 2022 16:16:34 -0400 Subject: [PATCH] Lint --- app/soapbox/components/status_list.tsx | 4 ---- app/soapbox/features/follow-recommendations/index.tsx | 4 ---- 2 files changed, 8 deletions(-) diff --git a/app/soapbox/components/status_list.tsx b/app/soapbox/components/status_list.tsx index 62f67910e..35edc9283 100644 --- a/app/soapbox/components/status_list.tsx +++ b/app/soapbox/components/status_list.tsx @@ -9,10 +9,6 @@ import StatusContainer from 'soapbox/containers/status_container'; import FeedSuggestions from 'soapbox/features/feed-suggestions/feed-suggestions'; import PlaceholderStatus from 'soapbox/features/placeholder/components/placeholder_status'; import PendingStatus from 'soapbox/features/ui/components/pending_status'; -import { useAppSelector } from 'soapbox/hooks'; - -import { Button, Card, CardBody, CardTitle, HStack, Stack, Text } from './ui'; -import VerificationBadge from './verification_badge'; import type { OrderedSet as ImmutableOrderedSet } from 'immutable'; import type { VirtuosoHandle } from 'react-virtuoso'; diff --git a/app/soapbox/features/follow-recommendations/index.tsx b/app/soapbox/features/follow-recommendations/index.tsx index 18f230196..7b68192de 100644 --- a/app/soapbox/features/follow-recommendations/index.tsx +++ b/app/soapbox/features/follow-recommendations/index.tsx @@ -27,10 +27,6 @@ const FollowRecommendations: React.FC = () => { return dispatch(fetchSuggestions({ limit: 20 })); }, 300); - const onDone = () => { - history.push('/'); - }; - useEffect(() => { dispatch(fetchSuggestions({ limit: 20 })); }, []);