We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4fbbde9 commit cd5fcb8Copy full SHA for cd5fcb8
dotcom-rendering/src/layouts/LiveLayout.tsx
@@ -655,17 +655,18 @@ export const LiveLayout = (props: WebProps | AppsProps) => {
655
<LiveGrid>
656
<GridItem area="media">
657
<div css={maxWidth}>
658
- {!!footballMatchUrl && (
659
- <Island
660
- priority="critical"
661
- defer={{ until: 'visible' }}
662
- >
663
- <GetMatchTabs
664
- matchUrl={footballMatchUrl}
665
- format={format}
666
- />
667
- </Island>
668
- )}
+ {!isInFootballRedesignTest &&
+ !!footballMatchUrl && (
+ <Island
+ priority="critical"
+ defer={{ until: 'visible' }}
+ >
+ <GetMatchTabs
+ matchUrl={footballMatchUrl}
+ format={format}
+ />
+ </Island>
669
+ )}
670
{!!cricketMatchUrl && (
671
<Island
672
priority="critical"
0 commit comments