Results 5 comments of Ivan

Use simple variables in repeat collection to avoid this problem, because `scope[repeatCollection.replace('::', '')]` doesn't work properly bad - `dm.slides` ``` {{ slide.id }} ``` good - `slides` ``` {{ slide.id...

@jreij In this case, everything works as expected. ![May-31-2022 11-36-51](https://user-images.githubusercontent.com/866748/171130627-7594cf1c-0d4b-4769-b1fb-be15ce230713.gif)

Yes, I have `android:launchMode="singleTask"` in the manifest file. But it should be `singleTask` as it is React Native app. If I put another value (for example `singleTop`) it fixes the...

Sure, Here is `MainActivity.java` ```java package com.testpay; import android.content.Intent; import android.os.Bundle; import android.util.Log; import com.facebook.react.ReactActivity; public class MainActivity extends ReactActivity { @Override protected String getMainComponentName() { return "MyApp"; } @Override...

Thanks for the clarification. So, there is no way to fix this behaviour on ReactNative app, as RN requires `launchMode:singleTask`, right? As I understand, this behaviour can be avoided by...