import { Fragment } from 'react' import { SportIcon } from 'components/SportIcon/SportIcon' import { Name } from 'features/Name' import { useUserFavoritesStore } from 'features/UserFavorites/store' import { ProfileTypes, SportTypes } from 'config' import { isLffClient } from 'config/clients' import { usePageParams } from 'hooks/usePageParams' import { TournamentType } from 'requests' import { isMatchPage } from 'helpers/isMatchPage' import { CountryFlag, FavoriteSign, Wrapper, StyledLink, } from './styled' type Props = { countryId: number, sportType?: SportTypes, tournament: TournamentType, } export const TournamentSubtitle = ({ countryId, sportType, tournament, }: Props) => { const { isInFavorites } = useUserFavoritesStore() const { sportType: sportTypeFromUrl } = usePageParams() const tournamentInFavorites = isInFavorites(ProfileTypes.TOURNAMENTS, tournament.id) return ( {!isLffClient && ( )} {tournamentInFavorites && } ) }