diff --git a/app/app.jsx b/app/app.jsx index f1c3d31..3f416be 100644 --- a/app/app.jsx +++ b/app/app.jsx @@ -5,7 +5,6 @@ import Home from './pages/home'; export default function App(){ return (
-

App

}/> diff --git a/app/components/map/entities-map.jsx b/app/components/map/entities-map.jsx index 744d2a7..687818c 100644 --- a/app/components/map/entities-map.jsx +++ b/app/components/map/entities-map.jsx @@ -15,7 +15,7 @@ export default function EntitiesMap({entities}) { <> diff --git a/app/components/map/relations-map.jsx b/app/components/map/relations-map.jsx index c3985ba..4d68d6e 100644 --- a/app/components/map/relations-map.jsx +++ b/app/components/map/relations-map.jsx @@ -24,7 +24,7 @@ export default function RelationsMap({relations}) { <> diff --git a/app/pages/home.jsx b/app/pages/home.jsx index 0e89391..757a983 100644 --- a/app/pages/home.jsx +++ b/app/pages/home.jsx @@ -15,7 +15,7 @@ export default function Home(){ //get entities const fetchEntities = () => { - axios.get('http://83.223.94.182:65535/entities/info') + axios.get('https://v1rgncy.api.swingbe.de/entities/info') .then((response) => { setEntities(response.data); }) @@ -26,7 +26,7 @@ export default function Home(){ //get relations const fetchRelations = () => { - axios.get('http://83.223.94.182:65535/relations/info') + axios.get('https://v1rgncy.api.swingbe.de/relations/info') .then((response) => { setRelations(response.data); }) @@ -44,7 +44,6 @@ export default function Home(){ if(entities.length>0){ return ( <> -

Home