Skip to content

Commit

Permalink
fix teams list
Browse files Browse the repository at this point in the history
  • Loading branch information
johnrees committed Jun 19, 2020
1 parent 6d1b93e commit 960be23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/themes/teams.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export const Teams: React.FC = () => {
return (
<div id="teams">
{Object.entries(teams)
.filter(([key]) => ["default", "canterbury", "scotland"].includes(key))
.filter(([key]) => !["default", "canterbury", "scotland"].includes(key))
.map(([key, team]) => (
<a href={`/${key}`} key={key}>
<img src={team.logo} alt={`${team.name} logo`} />
Expand Down

0 comments on commit 960be23

Please sign in to comment.