diff --git a/frontend/src/App.js b/frontend/src/App.js index 1a1e3e0..28db790 100644 --- a/frontend/src/App.js +++ b/frontend/src/App.js @@ -8,7 +8,7 @@ function App() { const [items, setItems] = useState([]) useEffect(()=>{//51.20.76.107 - axios.get("http://18.61.66.218/api/get/items").then(response => { + axios.get("http://18.61.66.218:5000/api/get/items").then(response => { setItems(response.data) })