Coming from #65 1. When the filters are informed, they should be applied 2. Create a new getter in vuex store that will filter each animal if animalSearchFilters is informed. 3. The new getter should call the getAllAnimals getters, and then filter the information. ``` getFilteredAnimals(state, getters) { const allAnimals = getters.getAllAnimals }, ``` 4. Advice: try to test one filter each time. Then, set more than one filter at a time to test it 5. Change the getter in the AnimalSlider