Skip to content

Commit

Permalink
refactor: lowercase string before checking
Browse files Browse the repository at this point in the history
  • Loading branch information
tomjeatt committed Jun 27, 2024
1 parent 16a85e7 commit 6361a74
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 !== 'Quest')
.filter((result) => result.show_on_app_store && result.category.toLowerCase() !== 'quest')
.sort((a, b) => Number(b.points_distributed_per_hour) - Number(a.points_distributed_per_hour))
);
},
Expand Down

0 comments on commit 6361a74

Please sign in to comment.