Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
abeddow91 committed Jul 4, 2023
1 parent b601a50 commit ea61540
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dotcom-rendering/src/components/Card/Card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ const decidePlayableMainMedia = (
showMainVideo: boolean | undefined,
design: ArticleDesign,
) => {
if (!!showMainVideo) return true;
if (showMainVideo) return true;
if (design === ArticleDesign.Video) return true;
return false;
};
Expand Down

0 comments on commit ea61540

Please sign in to comment.