Andrei Chernoprudov

Results 6 comments of Andrei Chernoprudov

I found in sources problem place: ```dart /// lib/src/redux_component/helper.dart Effect combineEffects(Map map) => .... if (subEffect != null) { return subEffect.call(action, ctx) ?? _SUB_EFFECT_RETURN_NULL; } .... return null; }; ```...

It can be fixed in two ways: 1. Remove returning `_SUB_EFFECT_RETURN_NULL ` from `combineEffects`. ```dart Effect combineEffects(Map map) => .... if (subEffect != null) { return subEffect.call(action, ctx); } .......

Tested 1.16.0 on ~200 production tests. iPhone 8 (iOS 13), iPhone 11 Pro Max(iOS 13), iPhone SE(iOS 12.2). Everything works, tests pass.

Hey Mixpanel team, We are having the same issue. Do you have any update on it? Or maybe some workaround?