diff --git a/src/features/MatchCard/CardFrontside/index.tsx b/src/features/MatchCard/CardFrontside/index.tsx index 9754f413..ee8c7feb 100644 --- a/src/features/MatchCard/CardFrontside/index.tsx +++ b/src/features/MatchCard/CardFrontside/index.tsx @@ -52,7 +52,6 @@ export const CardFrontside = ({ }: Props) => { const { access, - calc, date, formattedDate, hasVideo, @@ -71,8 +70,7 @@ export const CardFrontside = ({ const { isScoreHidden } = useMatchSwitchesStore() const isInFuture = getUnixTime(date) > getUnixTime(new Date()) const showScore = !( - !calc - || isInFuture + isInFuture || isScoreHidden ) || (live && !isScoreHidden) const tournamentInFavorites = isInFavorites(ProfileTypes.TOURNAMENTS, tournament.id)