|
|
|
|
@ -1,5 +1,3 @@ |
|
|
|
|
import { Fragment } from 'react' |
|
|
|
|
|
|
|
|
|
import { ProfileTypes } from 'config' |
|
|
|
|
|
|
|
|
|
import { T9n } from 'features/T9n' |
|
|
|
|
@ -86,14 +84,13 @@ export const CollapseTournament = ({ |
|
|
|
|
)} |
|
|
|
|
</SecondaryInfo> |
|
|
|
|
<CountMatches> |
|
|
|
|
{tournamentMatches.length > 1 ? ( |
|
|
|
|
<Fragment> |
|
|
|
|
{tournamentMatches.length} |
|
|
|
|
|
|
|
|
|
<T9n t='broadcasts' /> |
|
|
|
|
</Fragment> |
|
|
|
|
) |
|
|
|
|
: <T9n t='broadcast' />} |
|
|
|
|
{tournamentMatches.length} |
|
|
|
|
|
|
|
|
|
{ |
|
|
|
|
tournamentMatches.length > 1 |
|
|
|
|
? <T9n t='broadcasts' /> |
|
|
|
|
: <T9n t='broadcast' /> |
|
|
|
|
} |
|
|
|
|
</CountMatches> |
|
|
|
|
</Info> |
|
|
|
|
</CardWrapper> |
|
|
|
|
|