diff --git a/src/features/MatchCard/CardFrontside/index.tsx b/src/features/MatchCard/CardFrontside/index.tsx index 3da95a48..9754f413 100644 --- a/src/features/MatchCard/CardFrontside/index.tsx +++ b/src/features/MatchCard/CardFrontside/index.tsx @@ -118,18 +118,20 @@ export const CardFrontside = ({ )} {access === MatchAccess.CanBuyMatch && } - - {isHomePage ? null : formattedDate} - - {(isInFuture && (!hasVideo || !storage)) - ? - : null} - - {live && ( - - - - )} + {live + ? ( + + + + ) + : ( + + {isHomePage ? null : formattedDate} + {(isInFuture && (!hasVideo || !storage)) + ? + : null} + + )}