diff --git a/app/soapbox/components/status_list.tsx b/app/soapbox/components/status_list.tsx index 62f67910e0..35edc9283e 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 18f2301969..7b68192de1 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 })); }, []);