Skip to content

Commit

Permalink
adds birds to list
Browse files Browse the repository at this point in the history
  • Loading branch information
jadiehm committed Jun 21, 2024
1 parent 777b6e6 commit 86ac587
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/PhotoTest.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
const falseWineList = falseWines.map(item => item.id);
let animals = data.filter(d => d.gptAnimal !== "none" && d.gptAnimal !== "");
let lions = data.filter(d => d.finalAnimal.match(/lion/) || d.finalAnimal.match(/griffin/));
let birdList = ["Bird", "bird", "crane", "crow", "duck", "eagle", "European Bee-eater", "falcon", "flamingo", "geese", "goose",
let birdList = ["Bird", "bird", "chick", "cock", "crane", "crow", "duck", "eagle", "European Bee-eater", "falcon", "flamingo", "geese", "goose",
"hawk", "heron", "kiwi", "loon", "ostrich", "owl", "parrot", "partridge", "peacock", "pelican", "penguin", "pheasant", "quail",
"raven", "sandpiper", "stork", "swallow", "swan", "turkey"];
"raven", "rooster", "sandpiper", "stork", "swallow", "swan", "turkey"];
let birds = data.filter(d =>
birdList.some(bird => d.finalAnimal.includes(bird))
);
Expand Down

0 comments on commit 86ac587

Please sign in to comment.