Skip to content

Commit

Permalink
website: add an additional filter predicate to backers (#7286)
Browse files Browse the repository at this point in the history
  • Loading branch information
newswim authored and thymikee committed Mar 18, 2019
1 parent 4ba05b7 commit 4d9f99c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion website/pages/en/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ class Contributors extends React.Component {
</p>
<div>
{backers
.filter(b => b.tier === 'backer')
.filter(b => b.tier === 'backer' && !b.slug.includes('adult'))
.map(b => (
<a
key={b.id}
Expand Down

0 comments on commit 4d9f99c

Please sign in to comment.