Skip to content

Commit de1226c

Browse files
committed
Fix conflicts after rebase from main
1 parent 1613613 commit de1226c

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

dotcom-rendering/src/components/Card/Card.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -862,7 +862,6 @@ export const Card = ({
862862
return (
863863
<CardWrapper
864864
format={format}
865-
contextFormat={contextFormat}
866865
showTopBarDesktop={showTopBarDesktop}
867866
showTopBarMobile={showTopBarMobile}
868867
containerPalette={containerPalette}

dotcom-rendering/src/components/Card/components/CardWrapper.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ import { FormatBoundary } from '../../FormatBoundary';
99
type Props = {
1010
children: React.ReactNode;
1111
format: ArticleFormat;
12-
contextFormat?: ArticleFormat;
1312
showTopBarDesktop: boolean;
1413
showTopBarMobile: boolean;
1514
containerPalette?: DCRContainerPalette;
@@ -90,7 +89,7 @@ const mobileTopBarStyles = (colour: string) => css`
9089
`;
9190
const desktopTopBarStyles = (colour: string) => css`
9291
${from.tablet} {
93-
${topBarStyles}
92+
${topBarStyles(colour)}
9493
}
9594
`;
9695

0 commit comments

Comments
 (0)