diff --git a/service/ProductService.js b/service/ProductService.js index 6ea75b23f..7e02109ed 100644 --- a/service/ProductService.js +++ b/service/ProductService.js @@ -12,13 +12,13 @@ export default class ProductService { } getProducts() { - return fetch(this.contextPath + 'demo/data/products-small.json') + return fetch(this.contextPath + 'demo/data/products.json') .then((res) => res.json()) .then((d) => d.data); } getProductsWithOrdersSmall() { - return fetch(this.contextPath + 'demo/data/products-small.json') + return fetch(this.contextPath + 'demo/data/products-orders-small.json') .then((res) => res.json()) .then((d) => d.data); }