diff --git a/src/features/landing-timeline/index.tsx b/src/features/landing-timeline/index.tsx
index 1bb748fb5e..95e0004080 100644
--- a/src/features/landing-timeline/index.tsx
+++ b/src/features/landing-timeline/index.tsx
@@ -7,6 +7,7 @@ import PullToRefresh from 'soapbox/components/pull-to-refresh';
import { Column } from 'soapbox/components/ui';
import { useAppSelector, useAppDispatch, useInstance } from 'soapbox/hooks';
+import AboutPage from '../about';
import Timeline from '../ui/components/timeline';
import { SiteBanner } from './components/site-banner';
@@ -46,7 +47,7 @@ const LandingTimeline = () => {
- {timelineEnabled && (
+ {timelineEnabled ? (
{
divideType='space'
/>
+ ) : (
+
)}
);