From eda18395137a43d15e256dcdc42108db1afa8052 Mon Sep 17 00:00:00 2001 From: LuxShan Thavarasa <120371059+Luxshan2000@users.noreply.github.com> Date: Sat, 28 Oct 2023 21:26:41 +0530 Subject: [PATCH] Update App.js --- frontend/src/App.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) })