ywana-core8 0.0.990 → 0.0.991
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.
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +13 -13
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/incubator/task.js +1 -1
package/dist/index.cjs
CHANGED
@@ -5544,7 +5544,7 @@ var TaskContextProvider = function TaskContextProvider(props) {
|
|
5544
5544
|
listeners = _useState[0],
|
5545
5545
|
setListeners = _useState[1];
|
5546
5546
|
var appContext = React.useContext(appContext);
|
5547
|
-
var appContextRef = useRef(appContext);
|
5547
|
+
var appContextRef = React.useRef(appContext);
|
5548
5548
|
React.useEffect(function () {
|
5549
5549
|
appContextRef.current = appContext;
|
5550
5550
|
}, [appContext]);
|