diff --git a/src/stores/report/index.ts b/src/stores/report/index.ts index 7686236c..6ba9ce2f 100644 --- a/src/stores/report/index.ts +++ b/src/stores/report/index.ts @@ -47,7 +47,7 @@ export async function getReportSale() { } export async function getReportProduct() { - const res = await api.get(`/${ENDPOINT}/Product`); + const res = await api.get(`/${ENDPOINT}/product`); if (res.status < 400) { return res.data; }