From 81d9c6f6ac5c083109798ec6dcd0dfe25e649f51 Mon Sep 17 00:00:00 2001 From: Flatlogic Bot Date: Fri, 13 Mar 2026 01:48:56 +0000 Subject: [PATCH] version5 --- frontend/src/ProductList.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/ProductList.tsx b/frontend/src/ProductList.tsx index 6f935dd..9822b5a 100644 --- a/frontend/src/ProductList.tsx +++ b/frontend/src/ProductList.tsx @@ -14,7 +14,7 @@ const ProductList: React.FC = () => { const [loading, setLoading] = useState(true); useEffect(() => { - axios.get('http://127.0.0.1:8000/api/products/') + axios.get('http://127.0.0.1:8000/products/') .then(response => { setProducts(response.data); setLoading(false);