Skip to content

Commit

Permalink
fix: filter
Browse files Browse the repository at this point in the history
  • Loading branch information
tomjeatt committed Jul 18, 2024
1 parent 45583b7 commit 2f5b1d2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const PartnersSection = () => {
return (
partnerData.partners
// NOTE: Remove category check when adding quest project cards
.filter((result) => result.show_on_app_store && result.category.toLowerCase() !== 'quest')
.filter((result) => result.show_on_app_store && result.category.toLowerCase() !== 'quests')
.sort(
(a, b) =>
// partner.live property is a boolean
Expand Down

0 comments on commit 2f5b1d2

Please sign in to comment.