You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This might actually be intentional and we will need to update the FFI in the "offending" module. I'm using react-basic-hooks.
And that has code like this:
exports.useEffect_ = function (eq, deps, effect) {
var memoizedKey = exports.useMemo_(eq, deps);
React.useEffect(effect, [memoizedKey]);
};
I don't use useMemo_ (in fact I can't since it's not exported) but I use useEffect which in turn uses useEffect_ which then can't find useMemo_.
Would you say this is a bug or should the FFI be rewritten in a way that avoids this?
Edit: Yeah I just had a look at dce-output and that's what's happening. I will try to rewrite the FFI.
The text was updated successfully, but these errors were encountered:
This might actually be intentional and we will need to update the FFI in the "offending" module. I'm using
react-basic-hooks
.And that has code like this:
I don't use
useMemo_
(in fact I can't since it's not exported) but I useuseEffect
which in turn usesuseEffect_
which then can't finduseMemo_
.Would you say this is a bug or should the FFI be rewritten in a way that avoids this?
Edit: Yeah I just had a look at
dce-output
and that's what's happening. I will try to rewrite the FFI.The text was updated successfully, but these errors were encountered: