diff --git a/frontend/src/components/LocationBlock.js b/frontend/src/components/LocationBlock.js index 6647467..8fdf953 100644 --- a/frontend/src/components/LocationBlock.js +++ b/frontend/src/components/LocationBlock.js @@ -7,7 +7,7 @@ const LocationBlock = () => { const [display, setDisplay] = useState(''); useEffect(() => { - fetch('http://ip-api.com/json') + fetch('https://api.vytal.io/ip/') .then((response) => response.json()) .then((data) => { setLocationData(data);