diff --git a/src/features/PreferencesPopup/components/TournamentInfo/index.tsx b/src/features/PreferencesPopup/components/TournamentInfo/index.tsx index 64ff1020..9531ffca 100644 --- a/src/features/PreferencesPopup/components/TournamentInfo/index.tsx +++ b/src/features/PreferencesPopup/components/TournamentInfo/index.tsx @@ -38,12 +38,17 @@ const StyledName = styled(Name)` type Props = { isIcon?: boolean, + prefix?: string, tournament: Tournament, } -export const TournamentInfo = ({ isIcon, tournament }: Props) => ( +export const TournamentInfo = ({ + isIcon, + prefix, + tournament, +}: Props) => ( - + {isIcon && } diff --git a/src/features/TournamentsPopup/index.tsx b/src/features/TournamentsPopup/index.tsx index 4d50e8e6..65f1e1b1 100644 --- a/src/features/TournamentsPopup/index.tsx +++ b/src/features/TournamentsPopup/index.tsx @@ -67,7 +67,7 @@ export const TournamentsPopup = () => { onClick={close} key={team.id} > - + ))}