From 735e4f8ac971f4cbc0e4d960738cf77f6c4ce32f Mon Sep 17 00:00:00 2001 From: Zoia <43918051+zizi62@users.noreply.github.com> Date: Mon, 6 Sep 2021 12:17:47 +0300 Subject: [PATCH] =?UTF-8?q?feat:=20=F0=9F=8E=B8=20ott-1495=20(#457)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit added isScoreHidden for live --- src/features/MatchCard/CardFrontside/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/features/MatchCard/CardFrontside/index.tsx b/src/features/MatchCard/CardFrontside/index.tsx index f1ad5cbc..4335243f 100644 --- a/src/features/MatchCard/CardFrontside/index.tsx +++ b/src/features/MatchCard/CardFrontside/index.tsx @@ -77,7 +77,7 @@ export const CardFrontside = ({ || isInFuture || selectedMatchStatus === MatchStatuses.Soon || isScoreHidden - ) || live + ) || (live && !isScoreHidden) const tournamentInFavorites = isInFavorites(ProfileTypes.TOURNAMENTS, tournament.id) const team1InFavorites = isInFavorites(ProfileTypes.TEAMS, team1.id) const team2InFavorites = isInFavorites(ProfileTypes.TEAMS, team2.id)