From 42bd5845fa67fb1fec8cf7ada8a4938130722c76 Mon Sep 17 00:00:00 2001 From: Dana Lambert Date: Fri, 5 Nov 2021 11:17:47 +1300 Subject: [PATCH] Fix typo in PlantRepository --- frontend/src/repository/PlantRepository.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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;