Fix typo in PlantRepository

This commit is contained in:
Dana Lambert 2021-11-05 11:17:47 +13:00
parent 2d20c3b2d2
commit 42bd5845fa

View file

@ -1,6 +1,6 @@
import Repository from "./Repository";
const PlantRepsostory = {
const PlantRepository = {
getFilteredPlants(filters) {
return Repository.get(`/plants/`, { params: filters });
@ -8,4 +8,4 @@ const PlantRepsostory = {
}
export default PlantRepsostory;
export default PlantRepository;