diff --git a/src/Components/Layout/Filter/Filter.js b/src/Components/Layout/Filter/Filter.js index be411e3..caff3d5 100644 --- a/src/Components/Layout/Filter/Filter.js +++ b/src/Components/Layout/Filter/Filter.js @@ -18,7 +18,7 @@ const Filter = (props) => { useEffect(() => { axios - .get("http://localhost:8000/data_api/levels/") + .get("https://dev-iddrs.bicc.de/data_api/levels/") .then((response) => { setLevels(response.data); console.log(response.data); @@ -28,7 +28,7 @@ const Filter = (props) => { useEffect(() => { axios - .get("http://localhost:8000/data_api/standards/") + .get("https://dev-iddrs.bicc.de/data_api/standards/") .then((response) => setStandards(response.data)) .catch((error) => console.log(error)); }, []);