diff --git a/dotcom-rendering/src/components/FrontSection.tsx b/dotcom-rendering/src/components/FrontSection.tsx index 31d3e5fd811..a5b79fa3215 100644 --- a/dotcom-rendering/src/components/FrontSection.tsx +++ b/dotcom-rendering/src/components/FrontSection.tsx @@ -4,6 +4,7 @@ import { between, from, space, until } from '@guardian/source/foundations'; import { pageSkinContainer } from '../layouts/lib/pageSkin'; import type { EditionId } from '../lib/edition'; import { hideAge } from '../lib/hideAge'; +import { useIsSignedIn } from '../lib/useAuthStatus'; import { palette, palette as schemePalette } from '../palette'; import type { CollectionBranding } from '../types/branding'; import type { @@ -509,7 +510,8 @@ export const FrontSection = ({ isTagPage = false, isScrollableContainer = false, }: Props) => { - const isToggleable = toggleable && !!sectionId; + const isSignedIn = useIsSignedIn(); + const isToggleable = isSignedIn === true && toggleable && !!sectionId; const showMore = canShowMore && !!title &&