kmkf-work-order-service-component 0.4.0-alpha.19 → 0.4.0-alpha.20

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.
@@ -72,13 +72,13 @@ var WorkOrder = function WorkOrder(props) {
72
72
  type: 'workOrder/setIsBuyer',
73
73
  payload: true
74
74
  });
75
- setCurrentBuyerChecked(true);
75
+ dispatch(setCurrentBuyerChecked(true));
76
76
  } else {
77
77
  dispatch({
78
78
  type: 'workOrder/setIsBuyer',
79
79
  payload: false
80
80
  });
81
- setCurrentBuyerChecked(false);
81
+ dispatch(setCurrentBuyerChecked(false));
82
82
  }
83
83
  }, [buyerId]);
84
84
  useEffect(function () {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kmkf-work-order-service-component",
3
- "version": "0.4.0-alpha.19",
3
+ "version": "0.4.0-alpha.20",
4
4
  "scripts": {
5
5
  "start": "dumi dev",
6
6
  "docs:build": "dumi build",