diff --git a/frontend/src/repository/PlantRepository.js b/frontend/src/repository/PlantRepository.js index e8cccc4..a39ec09 100644 --- a/frontend/src/repository/PlantRepository.js +++ b/frontend/src/repository/PlantRepository.js @@ -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;