contentoh-components-library 21.2.55 → 21.2.56

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -269,7 +269,7 @@ var Dashboard = function Dashboard(_ref) {
269
269
  label: "Productos terminados",
270
270
  value: ACA
271
271
  }]);
272
- setTotalCount(orders.total);
272
+ setTotalCount(total);
273
273
  delete orders.total;
274
274
  setProductsByStatus(orders);
275
275
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "contentoh-components-library",
3
- "version": "21.2.55",
3
+ "version": "21.2.56",
4
4
  "dependencies": {
5
5
  "@aws-amplify/auth": "^4.5.3",
6
6
  "@aws-amplify/datastore": "^3.11.0",
@@ -99,7 +99,7 @@ export const Dashboard = ({ jwt, user, company }) => {
99
99
  { label: "Productos en proceso", value: inProcess },
100
100
  { label: "Productos terminados", value: ACA },
101
101
  ]);
102
- setTotalCount(orders.total);
102
+ setTotalCount(total);
103
103
  delete orders.total;
104
104
  setProductsByStatus(orders);
105
105
  };