From 413778b578d89f161068a99dc7ef337ebccea71d Mon Sep 17 00:00:00 2001 From: Matt DiMeglio Date: Sat, 14 Jun 2025 13:31:49 -0400 Subject: [PATCH] Update AppRouter.jsx --- web/src/router/AppRouter.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/router/AppRouter.jsx b/web/src/router/AppRouter.jsx index 89135a9..6667437 100644 --- a/web/src/router/AppRouter.jsx +++ b/web/src/router/AppRouter.jsx @@ -63,7 +63,7 @@ const AppRouter = () => { const fetchAPI = async () => { const location = window.location; - const uri = `/api`; + const uri = `http://192.168.0.105:5172/api`; const response = await axios.get(uri); console.log(response.data.fruits); };