From 41d5769aa0070078640c64744349ce2a5dacd6ec Mon Sep 17 00:00:00 2001 From: Justin Date: Fri, 1 Jul 2022 16:24:04 -0400 Subject: [PATCH] Lint --- app/soapbox/features/follow-recommendations/index.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/soapbox/features/follow-recommendations/index.tsx b/app/soapbox/features/follow-recommendations/index.tsx index 7b68192de1..7ad9c7ad3a 100644 --- a/app/soapbox/features/follow-recommendations/index.tsx +++ b/app/soapbox/features/follow-recommendations/index.tsx @@ -1,7 +1,6 @@ import debounce from 'lodash/debounce'; import React, { useEffect } from 'react'; import { FormattedMessage } from 'react-intl'; -import { useHistory } from 'react-router-dom'; import { fetchSuggestions } from 'soapbox/actions/suggestions'; import ScrollableList from 'soapbox/components/scrollable_list'; @@ -13,7 +12,6 @@ import { useAppDispatch, useAppSelector, useFeatures } from 'soapbox/hooks'; const FollowRecommendations: React.FC = () => { const dispatch = useAppDispatch(); const features = useFeatures(); - const history = useHistory(); const suggestions = useAppSelector((state) => state.suggestions.items); const hasMore = useAppSelector((state) => !!state.suggestions.next);