Skip to content

Commit

Permalink
Revert "temp remove code from jumpTo render on Article page"
Browse files Browse the repository at this point in the history
This reverts commit ec73032.
  • Loading branch information
louisearchibald committed Nov 15, 2024
1 parent ec73032 commit fa9e6bf
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/app/pages/ArticlePage/ArticlePage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,12 @@ const ArticlePage = ({ pageData }: { pageData: Article }) => {
topStoriesContent ? (
<ExperimentTopStories topStoriesContent={topStoriesContent} />
) : null,
jumpTo: JumpTo,
jumpTo: (props: ComponentToRenderProps & JumpToProps) =>
jumpToVariation === 'on_off' ? (
<JumpTo {...props} />
) : (
<JumpTo {...props} />
),
};

const visuallyHiddenBlock = {
Expand Down

0 comments on commit fa9e6bf

Please sign in to comment.