diff --git "a/screenshots/Screenshot 2025-10-05 at 12.14.43\342\200\257PM.png" "b/screenshots/Screenshot 2025-10-05 at 12.14.43\342\200\257PM.png" new file mode 100644 index 000000000..c7fb39cc0 Binary files /dev/null and "b/screenshots/Screenshot 2025-10-05 at 12.14.43\342\200\257PM.png" differ diff --git "a/screenshots/Screenshot 2025-10-05 at 12.31.43\342\200\257PM.png" "b/screenshots/Screenshot 2025-10-05 at 12.31.43\342\200\257PM.png" new file mode 100644 index 000000000..4dab4e65e Binary files /dev/null and "b/screenshots/Screenshot 2025-10-05 at 12.31.43\342\200\257PM.png" differ diff --git a/src/components/pages/PageProductForm/PageProductForm.tsx b/src/components/pages/PageProductForm/PageProductForm.tsx index 845ba9805..5fd8a4756 100755 --- a/src/components/pages/PageProductForm/PageProductForm.tsx +++ b/src/components/pages/PageProductForm/PageProductForm.tsx @@ -68,8 +68,8 @@ export default function PageProductForm() { { const res = await axios.get( - `${API_PATHS.bff}/product/available` + `${API_PATHS.bff}/products/` ); return res.data; } @@ -29,7 +29,7 @@ export function useAvailableProduct(id?: string) { ["product", { id }], async () => { const res = await axios.get( - `${API_PATHS.bff}/product/${id}` + `${API_PATHS.bff}/products/${id}` ); return res.data; },