From 318d82f5ec25f9c068bc681fc32d130ab7f44c4a Mon Sep 17 00:00:00 2001 From: LuxShan Thavarasa <120371059+Luxshan2000@users.noreply.github.com> Date: Sat, 28 Oct 2023 20:52:24 +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 536b7fe..1a1e3e0 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://ec2-18-61-66-218.ap-south-2.compute.amazonaws.com/api/get/items").then(response => { + axios.get("http://18.61.66.218/api/get/items").then(response => { setItems(response.data) })