Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -379,10 +379,7 @@ const Team = (props: {
isolation: 'isolate',
}}
>
<Crest
name={props.match[props.team].name}
paID={props.match[props.team].paID}
/>
<Crest paID={props.match[props.team].paID} />
{props.match.kind !== 'Fixture' ? (
<Score
score={props.match[props.team].score}
Expand Down Expand Up @@ -425,7 +422,7 @@ const TeamName = (props: {
</p>
);

const Crest = (props: { name: string; paID: string }) => (
const Crest = (props: { paID: string }) => (
<picture
css={{
...circleStyles,
Expand All @@ -436,7 +433,7 @@ const Crest = (props: { name: string; paID: string }) => (
>
<FootballCrest
teamId={props.paID}
altText={`${props.name} football crest`}
altText=""
width={40}
css={{
maxWidth: 40,
Expand Down
Loading