diff --git a/src/features/home-timeline/index.tsx b/src/features/home-timeline/index.tsx
index e511eaf43..566f2472e 100644
--- a/src/features/home-timeline/index.tsx
+++ b/src/features/home-timeline/index.tsx
@@ -1,5 +1,6 @@
-import { useState, Suspense } from 'react';
+import { Suspense } from 'react';
import { FormattedMessage } from 'react-intl';
+import { Route, Switch, useRouteMatch } from 'react-router-dom';
import Tabs from 'soapbox/components/ui/tabs.tsx';
import { CommunityTimeline, FollowsTimeline } from 'soapbox/features/ui/util/async-components.ts';
@@ -8,7 +9,8 @@ import { useInstance } from 'soapbox/hooks/useInstance.ts';
const HomeTimeline = () => {
const { instance } = useInstance();
- const [activeTab, setActiveTab] = useState('follows');
+
+ const match = useRouteMatch();
const notifications = useAppSelector((state) => state.notificationsTab);
return (
@@ -16,23 +18,26 @@ const HomeTimeline = () => {